A189915 Sequence for finding the day of the week for the first day of the month in a common (non-leap) year.
0, 3, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5
Offset: 1
Examples
In the year 2011 Jan 01 has index 6 (Saturday). Therefore, Feb 01 has index 6+3 = 2 (mod 7) (Tuesday), Mar 01 also has index 2, Apr 01 has index 6+6 = 5 (mod 7) (Friday), etc. In common years with Jan 01 on a Sunday (index 0) the sequence gives the index of the first day of the n-th month of this year. E.g., in the year 2006 (but not in the leap year 2012).
References
- L. Holford-Strevens, The History of Time. A Very Short Introduction, Oxford University Press, 2005.
- L. Holford-Strevens, Kleine Geschichte der Zeitrechnung und des Kalenders, Reclams Universalbibliothek Nr.18483, Stuttgart, 2008 (German translation).
Comments