login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A066567 Numbers that when incremented by the product of their digits produce a square. 4
2, 8, 13, 63, 91, 100, 128, 185, 215, 221, 337, 400, 448, 456, 549, 551, 559, 681, 900, 1024, 1089, 1151, 1185, 1215, 1221, 1327, 1348, 1437, 1600, 1651, 1897, 2025, 2112, 2191, 2196, 2209, 2293, 2304, 2392, 2401, 2448, 2500, 2539, 2544, 2551, 2596, 2601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
63 belongs to this sequence as 63 + 6*3 = 81 = 9^2.
MATHEMATICA
f[n_] := n + Apply[ Times, IntegerDigits[n]]; Select[ Range[ 2500], IntegerQ[ Sqrt[ f[ # ]]] & ]
PROG
(PARI) ProdD(x)= { local(p=1); while (x>9 && p>0, p*=x%10; x\=10); return(p*x) } { n=0; for (m=1, 10^10, if (issquare(m + ProdD(m)), write("b066567.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Mar 05 2010
CROSSREFS
Cf. A066564.
Sequence in context: A257036 A077241 A228469 * A349818 A329453 A319964
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Dec 18 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 22 2001
Offset changed from 0 to 1 by Harry J. Smith, Mar 05 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)