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.

A066236 Numbers k such that the sum of digits of k^k is a square.

Original entry on oeis.org

0, 1, 2, 3, 7, 10, 61, 80, 100, 121, 174, 182, 200, 276, 313, 432, 441, 463, 537, 612, 666, 739, 775, 961, 1000, 1239, 1382, 1413, 1952, 2000, 2232, 2427, 2594, 2935, 3195, 3337, 3381, 3542, 4438, 4566, 4630, 4818, 5266, 5352, 5745, 6363, 7026, 7538, 8142
Offset: 1

Views

Author

Jason Earls, Dec 19 2001

Keywords

Crossrefs

Programs

  • Mathematica
    fQ[n_] := IntegerQ[ Sqrt[ Plus @@ IntegerDigits[n^n]]]; Do[ If[ fQ[n], Print[n]], {n, 8498}] (* Robert G. Wilson v, Nov 23 2004 *)
  • PARI
    isok(k) = {issquare(sumdigits(k^k))} \\ Harry J. Smith, Feb 07 2010

Extensions

More terms from Robert G. Wilson v, Nov 23 2004