OFFSET
1,3
FORMULA
a(n) = A029780(n)^2. - Sean A. Irvine, Mar 04 2020
PROG
(Python)
from itertools import count, islice
from math import prod
def A029781_gen(): # generator of terms
return map(lambda x:x[1], filter(lambda x:set(str(x[0])) <= set(str(x[1])) & set(str(prod(x))), ((n, n**2) for n in count(0))))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved