cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A081032 Positions of black keys on piano keyboard, starting with A0 = the 1st key.

Original entry on oeis.org

2, 5, 7, 10, 12, 14, 17, 19, 22, 24, 26, 29, 31, 34, 36, 38, 41, 43, 46, 48, 50, 53, 55, 58, 60, 62, 65, 67, 70, 72, 74, 77, 79, 82, 84, 86
Offset: 1

Views

Author

David W. Wilson, Mar 02 2003

Keywords

Examples

			2nd, 5th, 7th, 10th, etc. keys of piano keyboard are black.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1,0,0,0,1,-1},{2,5,7,10,12,14},36] (* Harvey P. Dale, Sep 15 2018 *)

Formula

a(n) = floor((12n+2)/5).
From Chai Wah Wu, Sep 11 2018: (Start)
a(n) = a(n-1) + a(n-5) - a(n-6) for n > 6.
G.f. for a keyboard with an infinite number of keys: x*(2*x^4 + 3*x^3 + 2*x^2 + 3*x + 2)/(x^6 - x^5 - x + 1). (End)
a(n) = A060106(n) + 1 for 1 <= n <= 36. - Jianing Song, Oct 14 2019