A224945 Leap years having 53 Sundays and Mondays.
1584, 1612, 1640, 1668, 1696, 1708, 1736, 1764, 1792, 1804, 1832, 1860, 1888, 1928, 1956, 1984, 2012, 2040, 2068, 2096, 2108, 2136, 2164, 2192, 2204, 2232, 2260, 2288, 2328, 2356, 2384, 2412, 2440, 2468, 2496, 2508, 2536, 2564, 2592, 2604, 2632, 2660, 2688, 2728, 2756, 2784
Offset: 1
Keywords
Links
- Time and Date, The Gregorian calendar
- Time and Date, 2012
- Wikipedia, Gregorian calendar
- Index entries for sequences related to calendars
- Index entries for linear recurrences with constant coefficients, signature (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1).
Programs
-
Mathematica
Needs["Calendar`"]; Select[Range[1583, 2800], DayOfWeek[{#, 1, 1}, Calendar -> Gregorian] == Sunday && DaysBetween[{#, 1, 1}, {# + 1, 1, 1}, Calendar -> Gregorian] == 366 &, 50] (* T. D. Noe, Apr 22 2013 *) Select[Range[1583,3000],LeapYearQ[{#}]&&DayName[{#,1,1}]==Sunday&] (* Harvey P. Dale, Jul 04 2018, v9 or later *)
Comments