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.

A008684 Dates of successive days in Gregorian calendar.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
Offset: 1

Views

Author

Keywords

Comments

Starting with January and assuming not a leap year. - Harvey P. Dale, Sep 24 2012

Programs

  • Haskell
    a008684 n = a008684_list !! (n-1)
    a008684_list = concatMap (enumFromTo 1)
                             [31,28,31,30,31,30,31,31,30,31,30,31]
    -- Reinhard Zumkeller, Jun 23 2013
  • Mathematica
    Needs["Calendar`"]; Transpose[Table[DaysPlus[{2014,1,1},n],{n,0,364}]][[3]] (* Harvey P. Dale, Apr 26 2014 *)
    DateRange[{2021,1,1},{2021,12,31}][[All,3]] (* Harvey P. Dale, Mar 03 2022 *)