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!)
A064827 Numbers k such that each digit of k occurs among the digits of k^2. 4
1, 5, 6, 10, 11, 25, 27, 50, 60, 63, 64, 74, 76, 95, 96, 100, 101, 105, 110, 125, 139, 142, 205, 250, 255, 261, 270, 275, 277, 278, 285, 305, 364, 371, 376, 405, 421, 441, 463, 472, 493, 497, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 523, 524, 525, 593, 600, 601, 602 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
That is, if n is d digits long, then each one of those d digits occurs in the digits of n^2.
LINKS
EXAMPLE
125^2 = 15625, which contains all digits of 125, so 125 is a term of the sequence.
55 is not here because 55^2 = 3025, which has only one 5.
MATHEMATICA
Reap[Do[a = DigitCount[n^2]; b = DigitCount[n]; If[Min[a-b] >= 0, Sow[n]], {n, 1, 10^3}]][[2, 1]]
PROG
(Python)
from itertools import count, islice
from collections import Counter
def A064827_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda k:Counter(str(k))<=Counter(str(k**2)), count(max(startvalue, 1)))
A064827_list = list(islice(A064827_gen(), 20)) # Chai Wah Wu, Apr 03 2023
CROSSREFS
Cf. A046827 (essentially the same).
Sequence in context: A275018 A029772 A046827 * A308262 A029780 A074913
KEYWORD
nonn,base
AUTHOR
Joseph L. Pe, Feb 14 2002
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)