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.

A197039 Numbers such that sum of the cube of decimal digits is a perfect square.

Original entry on oeis.org

1, 4, 9, 10, 12, 21, 22, 40, 48, 84, 88, 90, 100, 102, 120, 123, 126, 132, 162, 168, 186, 201, 202, 210, 213, 216, 220, 231, 261, 312, 321, 333, 400, 408, 480, 612, 618, 621, 681, 804, 808, 816, 840, 861, 880, 900, 1000, 1002, 1020, 1023, 1026, 1032, 1062
Offset: 1

Views

Author

Michel Lagneau, Oct 08 2011

Keywords

Examples

			261 is in the sequence because 2^3+6^3+1^3 = 15^2.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1100],IntegerQ[Sqrt[Apply[Plus,IntegerDigits[#]^3]]]&]