login
A060958
Gregorian Easter dates, starting after 2000-04-23, a(2000) = 54.
2
46, 31, 51, 42, 27, 47, 39, 23, 43, 35, 55, 39, 31, 51, 36, 27, 47, 32, 52, 43, 35, 48, 40, 31, 51, 36, 28, 47, 32, 52, 44, 28, 48, 40, 25, 44, 36, 56, 41, 32, 52, 37, 29, 48, 40, 25, 45, 36, 49, 41, 33, 52, 37, 29, 49, 33, 53, 45, 30, 49, 41, 26, 46, 37, 29, 42
OFFSET
2001,1
COMMENTS
Formulas may differ legitimately for years before 1583 (e.g., 1497).
LINKS
Physikalisch-Technische Bundesanstalt, Gauss's formula
L. Huber, Oudin's formula
H. Lichtenberg, Zur Interpretation der Gauss-schen Osterformel und ihrer Ausnahmeregeln, Historia Mathematica 24 (1997), pp. 441-444.
E. Weisstein, Easter
EXAMPLE
a(2001) = 46 = 31 + 15 => 2001-04-15, a(2002) = 31 => 2002-03-31.
a(y) + 49 gives Whitsunday, i.e., a(y) - 12 in May or a(y) - 43 in June.
PROG
(Python)
from dateutil.easter import *
def a(n): return (easter(n).month-3)*31 + easter(n).day
print([a(n) for n in range(2001, 2067)]) # Michael S. Branicky, Apr 04 2021
CROSSREFS
Sequence in context: A097927 A033978 A216840 * A094892 A258915 A342479
KEYWORD
nonn,easy
AUTHOR
Frank Ellermann, May 10 2001
STATUS
approved