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.

A066564 Numbers that when incremented by the sum of their digits produce a square.

Original entry on oeis.org

0, 2, 8, 17, 27, 38, 72, 86, 135, 161, 179, 216, 245, 275, 315, 347, 432, 467, 521, 558, 614, 662, 720, 770, 830, 882, 944, 998, 1016, 1080, 1145, 1220, 1278, 1355, 1433, 1512, 1583, 1664, 1746, 1829, 1922, 1998, 2016, 2111, 2189, 2286, 2384, 2483, 2583
Offset: 1

Views

Author

Amarnath Murthy, Dec 18 2001

Keywords

Examples

			179 is in the sequence because 179 + sum of digits of 179 = 179 + 17 = 196 which is a perfect square. - _Indranil Ghosh_, Feb 10 2017
		

Crossrefs

Programs

  • Magma
    [n: n in [0..3*10^3] | IsSquare(&+Intseq(n)+n)]; // Vincenzo Librandi, Jan 15 2016
  • Mathematica
    Select[Range[0,2600],IntegerQ[Sqrt[#+Total[IntegerDigits[#]]]]&] (* Harvey P. Dale, May 19 2012 *)
  • PARI
    digitsum(n) = local(s, d); s = 0; while(n>0, d = divrem(n, 10); n = d[1]; s = s+d[2]); s
    a066564(m) = local(n); for(n = 0, m, if(issquare(n+digitsum(n)), print1(n, ", ")))
    a066564(10000)
    
  • PARI
    isok(n) = issquare(n + sumdigits(n)); \\ Michel Marcus, Jan 15 2016
    

Extensions

More terms from Jason Earls, Dec 20 2001