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.

A126816 Ramanujan numbers (A000594) read mod 64.

Original entry on oeis.org

1, 40, 60, 0, 30, 32, 24, 0, 21, 48, 20, 0, 54, 0, 8, 0, 50, 8, 44, 0, 32, 32, 8, 0, 39, 48, 24, 0, 38, 0, 32, 0, 48, 16, 16, 0, 62, 32, 40, 0, 58, 0, 52, 0, 54, 0, 16, 0, 41, 24, 56, 0, 46, 0, 24, 0, 16, 48, 36, 0, 6, 0, 56, 0, 20, 0, 60, 0, 32, 0, 24, 0, 26, 48, 36, 0, 32, 0, 48, 0, 9, 16
Offset: 1

Views

Author

N. J. A. Sloane, Feb 25 2007

Keywords

Crossrefs

Cf. A000594.

Programs

  • Mathematica
    a[n_] := Mod[RamanujanTau[n], 64]; Array[a, 100] (* Amiram Eldar, Jan 05 2025 *)
  • PARI
    a(n) = ramanujantau(n) % 64; \\ Amiram Eldar, Jan 05 2025