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.

A003556 Numbers that are both square and tetrahedral.

Original entry on oeis.org

0, 1, 4, 19600
Offset: 1

Views

Author

Keywords

Comments

A. J. J. Meyl proved in 1878 that only 1, 4 and 19600 are both square and tetrahedral. See link. [Bernard Schott, Dec 23 2012]

Examples

			From _Bernard Schott_, Dec 23 2012: (Start)
If S(n) = n^2 and T(m) = m*(m+1)*(m+2)/6, then
-> S(1)= T(1) = 1;
-> S(2)= T(2) = 4;
-> S(140) = T(48) = 19600. (End)
		

References

  • D. Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, 600.
  • D. Wells, The Penguin Dictionary of Curious and Interesting Numbers, p. 165 (Rev. ed. 1997).

Crossrefs

Intersection of A000290 and A000292.

Programs

  • Mathematica
    Select[Rest[FoldList[Plus, 0, Rest[FoldList[Plus, 0, Range[50000]]]]], IntegerQ[Sqrt[ # ]]&]
    Intersection[Binomial[# + 2, 3]&/@Range[0, 10000], Range[0,409000]^2] (* Harvey P. Dale, Feb 01 2011 *)