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.

A261190 Leap years in Symmetry454 calendar, starting year AD 1.

Original entry on oeis.org

3, 9, 15, 20, 26, 31, 37, 43, 48, 54, 60, 65, 71, 77, 82, 88, 93, 99, 105, 110, 116, 122, 127, 133, 139, 144, 150, 155, 161, 167, 172, 178, 184, 189, 195, 201, 206, 212, 217, 223, 229, 234, 240, 246, 251, 257, 263, 268, 274, 279, 285, 291, 296, 302, 308, 313
Offset: 1

Views

Author

Felix Fröhlich, Aug 11 2015

Keywords

Comments

Year n is a leap year if and only if ((52 * n + 146) % 293) < 52.

Crossrefs

Programs

  • PARI
    is(n) = ((52*n+146)%293) < 52