[go: up one dir, main page]

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!)
A029780 Numbers k such that every digit that appears in k also appears at least once in both k^2 and k^3. 3
0, 1, 5, 6, 10, 11, 25, 50, 55, 60, 64, 66, 76, 99, 100, 101, 110, 111, 112, 115, 116, 125, 225, 250, 275, 288, 323, 376, 405, 499, 500, 501, 502, 525, 550, 555, 600, 602, 625, 640, 642, 644, 660, 666, 676, 724, 726, 733, 755, 760, 776, 777, 833 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
A029772 intersect A029776. - Sean A. Irvine, Mar 04 2020
MATHEMATICA
Select[Range[0, 1000], Min[DigitCount[#^2, 10, IntegerDigits[#]]]>0 && Min[ DigitCount[ #^3, 10, IntegerDigits[#]]]>0&] (* Harvey P. Dale, Aug 12 2016 *)
PROG
(Python)
from itertools import count, islice
def A029780_gen(startvalue=0): # generator of terms >= startvalue
return filter(lambda n:set(str(n)) <= set(str(m:=n**2)) & set(str(n*m)), count(max(startvalue, 0)))
A029780_list = list(islice(A029780_gen(), 20)) # Chai Wah Wu, Apr 03 2023
CROSSREFS
Sequence in context: A046827 A064827 A308262 * A074913 A046829 A052212
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 August 29 13:35 EDT 2024. Contains 375517 sequences. (Running on oeis4.)