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!)
A029772 Every digit that appears in k also appears at least once in k^2. 6
0, 1, 5, 6, 10, 11, 25, 27, 50, 55, 60, 63, 64, 66, 74, 76, 95, 96, 99, 100, 101, 105, 110, 111, 112, 115, 116, 125, 139, 142, 199, 205, 211, 222, 225, 232, 250, 255, 261, 270, 275, 277, 278, 285, 288, 305, 323, 363, 364, 366, 371, 376, 405, 421 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
55 is in the list because 55^2 = 3025 and 5 appears in 3025.
323 is in the list because 323^2 = 104329 and 2, 3 appear in 104329.
MATHEMATICA
d[n_]:=IntegerDigits[n]; Select[Range[0, 421], Complement[d[#], d[#^2]]=={}&] (* Jayanta Basu, Jun 02 2013 *)
PROG
(Magma) [n: n in [0..500] | Intseq(n) subset Intseq(n^2)]; // Bruno Berselli, Aug 01 2013
(Python)
from itertools import count, islice
def A029772_gen(startvalue=0): # generator of terms >= startvalue
return filter(lambda n:set(str(n)) <= set(str(n**2)), count(max(startvalue, 0)))
A029772_list = list(islice(A029772_gen(), 20)) # Chai Wah Wu, Apr 03 2023
CROSSREFS
See A046827, where it is required that the digits of n appear in n^2 at least as often as they appear in n.
Sequence in context: A008851 A079259 A275018 * A046827 A064827 A308262
KEYWORD
nonn,base
AUTHOR
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 11:52 EDT 2024. Contains 371779 sequences. (Running on oeis4.)