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.

A061868 Numbers n such that n^2 has property that the sum of its digits and the product of its digits are squares (allowing zeros).

Original entry on oeis.org

0, 1, 2, 3, 10, 12, 20, 21, 30, 45, 48, 51, 60, 90, 95, 100, 101, 102, 103, 104, 105, 110, 120, 122, 130, 140, 148, 150, 175, 176, 180, 200, 201, 202, 203, 210, 212, 220, 221, 230, 247, 248, 249, 257, 265, 266, 274, 283, 284, 300, 301, 302, 310, 318, 319, 321
Offset: 1

Views

Author

Larry Reeves (larryr(AT)acm.org), May 11 2001

Keywords

Crossrefs

A061268 does not allow zero product of digits.

Programs

  • Mathematica
    spsQ[n_]:=Module[{idn2=IntegerDigits[n^2]},IntegerQ[Sqrt[Total[idn2]]] && IntegerQ[ Sqrt[Times@@idn2]]]; Select[Range[0,350],spsQ] (* Harvey P. Dale, Dec 12 2013 *)