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.

A356645 a(n) = tau(n)^2 - 4*n^11 where tau is Ramanujan's tau function A000594.

Original entry on oeis.org

-3, -7616, -645084, -14610432, -171983600, -1414609920, -7628945436, -27222867968, -112609506987, -386562553600, -855436691900, -2834434031616, -6834860379504, -16036772433920, -33117544971900, -69394306695168, -89395660818176, -249634755002304, -352295159176476, -768651312742400
Offset: 1

Views

Author

Michel Marcus, Aug 19 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := RamanujanTau[n]^2 - 4*n^11; Array[a, 20] (* Amiram Eldar, Aug 19 2022 *)
  • PARI
    a(n) = ramanujantau(n)^2 - 4*n^11; \\ Michel Marcus, Aug 19 2022