cw19_7

CalkinWilf(<19 30 44 53|)

Properties

Notes19
Period1200.0 ¢
Just7-limit
Source Mailing lists
Referencehttps://yahootuninggroupsultimatebackup.github.io/tuning-math/topicId_21119.html#21119
Thread5 scales
Tone Tone (¢) Step Step (¢)
21/20 84 21/20 84
35/32 155 25/24 71
9/8 204 36/35 49
7/6 267 28/27 63
6/5 316 36/35 49
5/4 386 25/24 71
9/7 435 36/35 49
4/3 498 28/27 63
7/5 583 21/20 84
10/7 617 50/49 35
3/2 702 21/20 84
14/9 765 28/27 63
8/5 814 36/35 49
5/3 884 25/24 71
7/4 969 21/20 84
9/5 1018 36/35 49
15/8 1088 25/24 71
40/21 1116 64/63 27
2/1 1200 21/20 84

Similar scales

FileNotesRotationMax diff (¢)
precata19 19 4 19.1
xen18-erlich-hanson-19 19 4 19.2
xen12-hanson-06-basic 19 0 19.3
madagascar19 19 4 19.3
xen07-chalmers-hanson 19 0 19.3
xen18-erlich-keemun-19 19 4 19.5
xen12-hanson-11-chain-87 19 0 20.1
xen07-chalmers-mercator 19 3 21.3
xen12-hanson-11-chain-72 19 10 21.8
xen07-chalmers-ariel 19 8 21.9

Parent scales

FileNotesMax diff (¢)
partch_37 37 4.5
partch-41combo 41 4.5
schis41 41 4.5
tenn41a 41 4.5
xen03-wilson-partch 41 4.5
xen18-erlich-miracle-41 41 5.0
studwacko 41 5.0
miracle41 41 5.0
miracle3 41 5.1
xen03-secor-partch 43 4.5

Child scales

FileNotesMax diff (¢)
12highschool1 12 0.0
Spa_s_s_7_lim 12 0.0
lester_tester 12 0.0
xen06-polansky-study-1 12 0.0
xen16-grady-centaur 12 0.0
10highschool1 10 0.0
xen12-hanson-02-ten 10 0.0
09highschool 9 0.0
ch9_6 9 0.0
08_wauchope_symmetrical 8 0.0
Mailing list post
From: genewardsmith (2013-01-02)
Subject: More on Calkin-Wilf

People may recall I asked about potential music uses of the Calkin-Wilf sequence, this is some thoughts on that.

Recall that Calkin-Wilf enumerates the positive rationals. If we first define fusc(n) by fusc(0)=0, fusc(1)=1, fusc(n)=fusc(n/2) for n even and fusc(n)=fusc((n-1)/2)+fusc((n+1)/2) for n odd, then CalkinWilf(n) = fusc(n)/fusc(n+1). We may also use 

CalkinWilf(n+1) = 1/(2 floor(CalkinWilf(n)) - CalkinWilf(n) + 1)

Similarly, we may enumerate just the octave (or equivalently, pitch classes) by OCW(n) = (2 fusc(n) + fusc(n+1))/(fusc(n) + fusc(n+1)), where now 1 <= OCW(n) < 2. This sequence goes 1, 3/2, 4/3, 5/3, 5/4, 8/5, 7/5, 7/4, 6/5, 11/7, 11/8 ... . WE can use this to make a Calkin-Wilf version of the dwarf scale for a val, where now we pick the first sequence element q with v(q)=n for the nth scale value. This runs into the problem that OCW(n) strongly doesn't want to be near 1, and to a lesser extent, near 2. However the Calkin-Wilf number for these have factors of a high power of 2 near 1, and one plus the number has power of two factors, to lesser extent, near 2, making them easier to find.  This however raises the question of inverting CalkinWilf(n) or OCR(n). The inverse of CalkinWilf, which is a peculiar sort of height function of a kind, is given by the following Maple code:

calkinv := proc(q)
# inverse CalkinWilf
local i, j, t, x;
i := numer(q);
j := denom(q);
x := 0;
t := -1;
while not i*j = 1 do
t := t+1;
if i>j then
i := i-j;
x := x+2^t; 
else j := j-i fi od;
x+2^(t+1) end:

Then the inverse of OCW is OCWinv(q) = calkinv((q-1)/(2-q)).

Here are some Calkin-Wilf epimorphic scales:

! cw12_5.scl
!
CalkinWilf(<12 19 28|) = ariel1
 12
!
 27/25
 9/8
 6/5
 5/4
 4/3
 25/18
 3/2
 8/5
 5/3
 9/5
 15/8
 2/1

! cw12_7.scl
!
CalkinWilf(<12 19 28 34|) = hahn12
 12
!
 15/14
 8/7
 6/5
 5/4
 4/3
 7/5
 3/2
 8/5
 5/3
 7/4
 15/8
 2/1

! cw12_11.scl
!
CalkinWilf(<12 19 28 34 42|)
 12
!
 12/11
 8/7
 6/5
 5/4
 4/3
 7/5
 3/2
 8/5
 5/3
 7/4
 11/6
 2/1

 ! cw15_5.scl
!
CalkinWilf(<15 23 35|) = cifariello
 15
!
 16/15
 10/9
 9/8
 6/5
 5/4
 4/3
 25/18
 36/25
 3/2
 8/5
 5/3
 16/9
 9/5
 15/8
 2/1

! cw15_7.scl
!
CalkinWilf(<15 23 35 42|) = hahn15
 15
!
 16/15
 10/9
 7/6
 6/5
 5/4
 4/3
 7/5
 10/7
 3/2
 8/5
 5/3
 7/4
 9/5
 15/8
 2/1

! cw19_5.scl
!
CalkinWilf(<19 30 44|)
 19
!
 135/128
 27/25
 9/8
 75/64
 6/5
 5/4
 32/25
 4/3
 25/18
 36/25
 3/2
 25/16
 8/5
 5/3
 128/75
 9/5
 15/8
 48/25
 2/1
! cw19_7.scl
!
CalkinWilf(<19 30 44 53|)
 19
!
 21/20
 35/32
 9/8
 7/6
 6/5
 5/4
 9/7
 4/3
 7/5
 10/7
 3/2
 14/9
 8/5
 5/3
 7/4
 9/5
 15/8
 40/21
 2/1

! cw19_11.scl
!
CalkinWilf(<19 30 44 53 66|)
 19
!
 35/33
 12/11
 9/8
 7/6
 6/5
 5/4
 9/7
 4/3
 7/5
 10/7
 3/2
 14/9
 8/5
 5/3
 7/4
 9/5
 11/6
 40/21
 2/1
Full thread (6 messages)
From: genewardsmith (2013-01-02)
Subject: More on Calkin-Wilf

People may recall I asked about potential music uses of the Calkin-Wilf sequence, this is some thoughts on that.

Recall that Calkin-Wilf enumerates the positive rationals. If we first define fusc(n) by fusc(0)=0, fusc(1)=1, fusc(n)=fusc(n/2) for n even and fusc(n)=fusc((n-1)/2)+fusc((n+1)/2) for n odd, then CalkinWilf(n) = fusc(n)/fusc(n+1). We may also use 

CalkinWilf(n+1) = 1/(2 floor(CalkinWilf(n)) - CalkinWilf(n) + 1)

Similarly, we may enumerate just the octave (or equivalently, pitch classes) by OCW(n) = (2 fusc(n) + fusc(n+1))/(fusc(n) + fusc(n+1)), where now 1 <= OCW(n) < 2. This sequence goes 1, 3/2, 4/3, 5/3, 5/4, 8/5, 7/5, 7/4, 6/5, 11/7, 11/8 ... . WE can use this to make a Calkin-Wilf version of the dwarf scale for a val, where now we pick the first sequence element q with v(q)=n for the nth scale value. This runs into the problem that OCW(n) strongly doesn't want to be near 1, and to a lesser extent, near 2. However the Calkin-Wilf number for these have factors of a high power of 2 near 1, and one plus the number has power of two factors, to lesser extent, near 2, making them easier to find.  This however raises the question of inverting CalkinWilf(n) or OCR(n). The inverse of CalkinWilf, which is a peculiar sort of height function of a kind, is given by the following Maple code:

calkinv := proc(q)
# inverse CalkinWilf
local i, j, t, x;
i := numer(q);
j := denom(q);
x := 0;
t := -1;
while not i*j = 1 do
t := t+1;
if i>j then
i := i-j;
x := x+2^t; 
else j := j-i fi od;
x+2^(t+1) end:

Then the inverse of OCW is OCWinv(q) = calkinv((q-1)/(2-q)).

Here are some Calkin-Wilf epimorphic scales:

! cw12_5.scl
!
CalkinWilf(<12 19 28|) = ariel1
 12
!
 27/25
 9/8
 6/5
 5/4
 4/3
 25/18
 3/2
 8/5
 5/3
 9/5
 15/8
 2/1

! cw12_7.scl
!
CalkinWilf(<12 19 28 34|) = hahn12
 12
!
 15/14
 8/7
 6/5
 5/4
 4/3
 7/5
 3/2
 8/5
 5/3
 7/4
 15/8
 2/1

! cw12_11.scl
!
CalkinWilf(<12 19 28 34 42|)
 12
!
 12/11
 8/7
 6/5
 5/4
 4/3
 7/5
 3/2
 8/5
 5/3
 7/4
 11/6
 2/1

 ! cw15_5.scl
!
CalkinWilf(<15 23 35|) = cifariello
 15
!
 16/15
 10/9
 9/8
 6/5
 5/4
 4/3
 25/18
 36/25
 3/2
 8/5
 5/3
 16/9
 9/5
 15/8
 2/1

! cw15_7.scl
!
CalkinWilf(<15 23 35 42|) = hahn15
 15
!
 16/15
 10/9
 7/6
 6/5
 5/4
 4/3
 7/5
 10/7
 3/2
 8/5
 5/3
 7/4
 9/5
 15/8
 2/1

! cw19_5.scl
!
CalkinWilf(<19 30 44|)
 19
!
 135/128
 27/25
 9/8
 75/64
 6/5
 5/4
 32/25
 4/3
 25/18
 36/25
 3/2
 25/16
 8/5
 5/3
 128/75
 9/5
 15/8
 48/25
 2/1
! cw19_7.scl
!
CalkinWilf(<19 30 44 53|)
 19
!
 21/20
 35/32
 9/8
 7/6
 6/5
 5/4
 9/7
 4/3
 7/5
 10/7
 3/2
 14/9
 8/5
 5/3
 7/4
 9/5
 15/8
 40/21
 2/1

! cw19_11.scl
!
CalkinWilf(<19 30 44 53 66|)
 19
!
 35/33
 12/11
 9/8
 7/6
 6/5
 5/4
 9/7
 4/3
 7/5
 10/7
 3/2
 14/9
 8/5
 5/3
 7/4
 9/5
 11/6
 40/21
 2/1
From: genewardsmith (2013-01-03)
Subject: Re: More on Calkin-Wilf

--- In tuning-math@yahoogroups.com, "genewardsmith" <genewardsmith@...> wrote:

> calkinv := proc(q)
> # inverse CalkinWilf
> local i, j, t, x;
> i := numer(q);
> j := denom(q);
> x := 0;
> t := -1;
> while not i*j = 1 do
> t := t+1;
> if i>j then
> i := i-j;
> x := x+2^t; 
> else j := j-i fi od;
> x+2^(t+1) end:

for each finitely generated group G of positive rationals, and particular for any p-limit, we can form the sum

dense(G) = sum_{q in G} 1/calkinv(q)

which will converge. What the heck does this tell us?
From: Mike Battaglia (2013-01-03)
Subject: Re: [tuning-math] More on Calkin-Wilf

On Wed, Jan 2, 2013 at 11:08 AM, genewardsmith
<genewardsmith@sbcglobal.net> wrote:
>
> This runs into the problem that OCW(n) strongly doesn't want to be near 1, and to a lesser extent, near 2.

Why, practically speaking, is this a problem?

> However the Calkin-Wilf number for these have factors of a high power of 2 near 1, and one plus the number has power of two factors, to lesser extent, near 2, making them easier to find.

What is the "Calkin-Wilf number," and when you say "the Calkin-Wilf
number for *these* ...", what are the "these" that you're speaking of?

-Mike
From: Mike Battaglia (2013-01-03)
Subject: Re: [tuning-math] Re: More on Calkin-Wilf

On Wed, Jan 2, 2013 at 10:35 PM, genewardsmith <genewardsmith@sbcglobal.net>
wrote:
>
> for each finitely generated group G of positive rationals, and particular
> for any p-limit, we can form the sum
>
> dense(G) = sum_{q in G} 1/calkinv(q)
>
> which will converge. What the heck does this tell us?

1) How did you come up with this sum?
2) How do you know that it converges?
3) Do you know of a way to compute this expression for an arbitrary group?
4) Is there a well-known name for this dense(G) function in the literature?
5) Do you know if it gives different results for 4.3.5, 2.9.5, and 2.3.25?

-Mike
From: genewardsmith (2013-01-03)
Subject: Re: More on Calkin-Wilf

--- In tuning-math@yahoogroups.com, Mike Battaglia  wrote:
>
> On Wed, Jan 2, 2013 at 11:08 AM, genewardsmith
>  wrote:
> >
> > This runs into the problem that OCW(n) strongly doesn't want to be near 1, and to a lesser extent, near 2.
> 
> Why, practically speaking, is this a problem?

Because if you just step through the numbers one at a time, it will take you a really long time to get to the comma-sized intervals, or even the step sizes. For instance, calkoct(4096)=15/14, which is 119.443 cents, and calkoct(2048)=14/13, which is 128.298 cents. If you 
want a scale step between 119.443 and 128.298 cents, you need to look at numbers of the form 4096n where n is odd. That's not so bad, but already calkoct(2^22)=25/24 is a problem, and as for calkoct(2^33)=36/35, forget about it. But instead of all that you can take an interated Cps of a p-limit diamond, and step through that.

> What is the "Calkin-Wilf number," 

The integer argument n of CalkinWilf(n). The nth positive rational, in othr words.
From: genewardsmith (2013-01-03)
Subject: Re: More on Calkin-Wilf

--- In tuning-math@yahoogroups.com, Mike Battaglia  wrote:

> 1) How did you come up with this sum?

I was trying to think of a density measure for JI groups.

> 2) How do you know that it converges?

After a while, CalkinWilf(n) where n is the nth p-limit or whatever element starts to grow exponentially.

> 3) Do you know of a way to compute this expression for an arbitrary group?

Other than brute force, a PITA, no.

> 4) Is there a well-known name for this dense(G) function in the literature?

No. I doubt very much it's been considered.

> 5) Do you know if it gives different results for 4.3.5, 2.9.5, and 2.3.25?

It does.

Raw file

! cw19_7.scl
!
CalkinWilf(<19 30 44 53|)
 19
!
 21/20
 35/32
 9/8
 7/6
 6/5
 5/4
 9/7
 4/3
 7/5
 10/7
 3/2
 14/9
 8/5
 5/3
 7/4
 9/5
 15/8
 40/21
 2/1
!
! https://yahootuninggroupsultimatebackup.github.io/tuning-math/topicId_21119.html#21119
!
! [info]
! source = Mailing lists
! file = tuning-math/messages/yahoo_tuning-math_messages_api_raw_20928-21395.json
! topic_id = 21119
! msg_id = 21119