login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A258054 Circle of fifths cycle (counterclockwise). 3
1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The twelve notes dividing the octave are numbered 1 through 12 sequentially. This sequence begins at a certain note, travels down a perfect fifth twelve times (seven semitones), and arrives back at the same note. If justly tuned fifths are used, the final note will be flat by the Pythagorean comma (roughly 23.46 cents or about a quarter of a semitone).
Period 12: repeat [1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8]. - Omar E. Pol, May 18 2015
The string [1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8] is also in both A023127 and A054073. - Omar E. Pol, May 19 2015
LINKS
Wikipedia, Circle of fifths
FORMULA
Periodic with period 12: a(n) = 1 + (5(n-1) mod 12).
From Colin Barker, Nov 15 2019: (Start)
G.f.: x*(1 + 6*x + 11*x^2 + 4*x^3 + 9*x^4 + 2*x^5 + 7*x^6 + 12*x^7 + 5*x^8 + 10*x^9 + 3*x^10 + 8*x^11) / (1 - x^12).
a(n) = a(n-12) for n>12.
(End)
EXAMPLE
For a(3), 1+5+5 = 11 (mod 12).
For a(4), 1+5+5+5 = 4 (mod 12).
MAPLE
A258054:=n->1+(5*(n-1) mod 12): seq(A258054(n), n=1..100); # Wesley Ivan Hurt, May 22 2015
MATHEMATICA
PadRight[{}, 100, {1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8}] (* Vincenzo Librandi, May 19 2015 *)
LinearRecurrence[{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, {1, 6, 11, 4, 9, 2, 7, 12, 5, 10, 3, 8}, 108] (* Ray Chandler, Aug 27 2015 *)
PROG
(Magma) [1+5*(n-1) mod 12: n in [1..80]]; // Vincenzo Librandi, May 19 2015
(PARI) a(n)=1+5*(n-1) \\ Charles R Greathouse IV, May 22 2015
(PARI) Vec(x*(1 + 6*x + 11*x^2 + 4*x^3 + 9*x^4 + 2*x^5 + 7*x^6 + 12*x^7 + 5*x^8 + 10*x^9 + 3*x^10 + 8*x^11) / (1 - x^12) + O(x^80)) \\ Colin Barker, Nov 15 2019
CROSSREFS
Cf. A221363 (Pythagorean comma), A257811 (clockwise circle of fifths cycle).
Sequence in context: A284738 A100129 A009443 * A106540 A212208 A334280
KEYWORD
nonn,easy
AUTHOR
Peter Woodward, May 17 2015
EXTENSIONS
Extended by Ray Chandler, Aug 27 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)