Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #24 Jun 09 2022 21:54:12
%S 10,16,19,33,36,42,50,56,65,73,82,88,91,102,110,111,119,128,137,145,
%T 148,151,165,168,174,182,183,191,197,205,214,220,223,237,240,243,251,
%U 260,269,277,286,297,300,306,314,315,323,332,346,352,355,369,372,378,386
%N Months (on the Gregorian Calendar), numbered sequentially starting with January 2000, that begin on a Sunday.
%C Months of 2000 are 1-12; months of 2001 are 13-24; months of 2002 are 25-36; and so on.
%e 36 is a term because December 2002 (the 36th month starting with January 2000) starts on Sunday.
%o (Java)
%o Calendar calendar = new GregorianCalendar(2000,0,1);
%o for (int i=0; i <=1000; i++) {
%o if (calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY)
%o System.out.printf("%d, ", i+1);
%o calendar.add(Calendar.MONTH, 1);
%o } /* _Michel Marcus_, May 03 2014 */
%K nonn,less
%O 1,1
%A _J. Lowell_, Apr 28 2014