A011763 Days in year in proleptic Gregorian calendar.
365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366, 365, 365, 365, 366
Offset: 1
Links
Programs
-
Mathematica
(* first do *) Needs["Calendar`"] (* then *) Table[ DaysBetween[{y, 1, 1}, {y + 1, 1, 1}], {y, 48}] (* Robert G. Wilson v, Apr 18 2010 *)
-
PARI
a(n)=if(n%4, 365, if(n%100, 366, n%400, 366, 365)) \\ Charles R Greathouse IV, Oct 13 2022
Comments