OFFSET
1,1
COMMENTS
A Hebrew year approximates a solar year with 12 and 7/19 lunar months (or 19 years with 235 months, the 19-year Metonic cycle).
Also numbers m such that (1 + 7*m) mod 19 < 7.
In equal musical temperament, when an octave is divided into twelve half steps (a half step involves two notes and a whole step involves three notes, giving a total of thirteen notes including the octave), whole (w) and half (h) step intervals of the major scale follow a pattern of 2w-1h-3w-1h. Assigning the integer 2 (notes) to the half-step and 3 (notes) to the whole-step intervals will result in the same sequence when applied to the major scale. - Gergely Földvári, Jul 28 2024
REFERENCES
N. Dershowitz and E. M. Reingold, Calendrical Calculations, Cambridge University Press, 1997.
LINKS
Gergely Földvári, Illustration of the correlation between leap years of the Hebrew calendar and the musical major scale
Robinson Meyer, The Ancient Math That Sets the Date of Easter and Passover: Why don't the two holidays always coincide?, The Atlantic, April 19, 2019.
Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,1,-1).
FORMULA
a(n) = floor((19*n + 5)/7).
a(n) = A083033(n) + n + 2. - Ralf Stephan, Feb 24 2004
a(n) = A083089(n+1) + n. - Robert B Fowler, Dec 07 2022
G.f.: x*(2*x^6 + 3*x^5 + 3*x^4 + 3*x^3 + 2*x^2 + 3*x + 3)/((x - 1)^2*(x^6 + x^5 + x^4 + x^3 + x^2 + x + 1)). - Colin Barker, Jul 02 2012
MATHEMATICA
LinearRecurrence[{1, 0, 0, 0, 0, 0, 1, -1}, {3, 6, 8, 11, 14, 17, 19, 22}, 70] (* Harvey P. Dale, Jan 18 2015 *)
Floor[(19Range[70] + 5)/7] (* Alonso del Arte, Apr 21 2019 *)
PROG
(PARI) a(n)=(19*n+5)\7 \\ Charles R Greathouse IV, Dec 07 2011
CROSSREFS
Cf. A350458 (JDN of Tishri 1 each year starting with year 1).
KEYWORD
nonn,easy
AUTHOR
STATUS
approved