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.

A307492 Numbers that are both centered square and square pyramidal.

Original entry on oeis.org

1, 5, 42925, 1026745
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 10 2019

Keywords

Comments

If it exists, a(5) > 10^29. - Bert Dobbelaere, Apr 12 2019

Crossrefs

Intersection of A000330 and A001844.

Programs

  • Mathematica
    csQ[n_] := IntegerQ[Sqrt[2*n-1]]; Select[Table[n(n+1)(2n+1)/6, {n, 0, 1000}], csQ] (* Amiram Eldar, Apr 11 2019 *)