login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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
STATUS
approved