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.

Showing 1-2 of 2 results.

A104019 Years in the Gregorian calendar for which Easter falls on the 25th day of the month.

Original entry on oeis.org

1663, 1666, 1674, 1731, 1734, 1742, 1883, 1886, 1894, 1943, 1951, 2035, 2038, 2046, 2103, 2187, 2190, 2198, 2255, 2258, 2266, 2323, 2326, 2334, 2407, 2410, 2418, 2491, 2559, 2570, 2573, 2581, 2627, 2630, 2638, 2779, 2782, 2790, 2874, 2877, 2885, 2931
Offset: 1

Views

Author

Cino Hilliard, Mar 31 2005

Keywords

Comments

The starting point for the sequence is explained by the fact that the Gregorian calendar was only introduced in 1582.
The complete Easter cycle lasts 5700000 years. In this cycle, Mar 25 occurs 110200 times and Apr 25 occurs 42000 times for a total of 152200 times. This reduces to 761 occurrences every 28500 years (~2.67%). - Hans Havermann, Jan 27 2008

Crossrefs

Cf. A104034.

Programs

  • Mathematica
    (* first do *) Needs["Miscellaneous`Calendar`"] (* then *) Select[ Range[1582, 2941], EasterSunday[ # ][[3]] == 25 &] (* Robert G. Wilson v, Apr 06 2005 *)
  • PARI
    edate(yr1,yr2,day) = { local(flag=1,d,y,y2,ct,dt); for(d=day,day, ct=0; for(y=yr1,yr2, dt=oudin(y); if(eval(mid(dt,4,2))==d, if(flag,y2=y;flag=0); ct++; \ print(ct" "dt" "y-y2); print1(y","); if(y2<>y,y2=y); ); ); \ print1(ct","); ) } oudin(y) = \This is based on the algorithm of Oudin (1940) { local(c,n,k,i1,i2,i3,a1,a2,m,d,l,dt,dat=""); c=floor(y/100); n=y-19*floor(y/19); k=floor((c-17)/25); i1=c-floor(c/4)-floor((c-k)/3)+19*n+15; i2=i1-30*floor(i1/30); i3=i2-floor(i2/28)*(1-floor(i2/28)*floor(29/(i2+1))*floor((21-n)/11)); a1=y+floor(y/4)+i3+2-c+floor(c/4); a2=a1-7*floor(a1/7); l=i3-a2; m=3+floor((l+40)/44); d=l+28-31*floor(m/4); dat = concat(dat,right(Str(m+100),2)); dat = concat(dat," "); dat = concat(dat,right(Str(d+100),2)); dat = concat(dat," "); dat = concat(dat,Str(y)); return(dat); }

Formula

The formula is based on the algorithm of Oudin (1940) taken from the link.

Extensions

More terms from Robert G. Wilson v, Apr 06 2005

A350027 Years in which Easter falls on the same day and month in both the Julian and Gregorian calendars, starting with 1583.

Original entry on oeis.org

1583, 1585, 1588, 1591, 1594, 1597, 1600, 1601, 1604, 1605, 1607, 1608, 1611, 1612, 1615, 1618, 1621, 1624, 1627, 1628, 1629, 1631, 1632, 1634, 1635, 1638, 1639, 1642, 1645, 1648, 1649, 1651, 1654, 1656, 1658, 1659, 1662, 1665, 1666, 1668, 1669, 1672, 1675
Offset: 1

Views

Author

Bartlomiej Malarz, Dec 22 2021

Keywords

Comments

The Gregorian calendar was introduced in October 1582 by Pope Gregory XIII.

Crossrefs

Showing 1-2 of 2 results.