[go: up one dir, main page]

login
Search: a029780 -id:a029780
     Sort: relevance | references | number | modified | created      Format: long | short | data
Squares such that digits of sqrt(n) appear in both n and n^(3/2).
+10
0
0, 1, 25, 36, 100, 121, 625, 2500, 3025, 3600, 4096, 4356, 5776, 9801, 10000, 10201, 12100, 12321, 12544, 13225, 13456, 15625, 50625, 62500, 75625, 82944, 104329, 141376, 164025, 249001, 250000, 251001, 252004, 275625, 302500
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))))
A029781_list = list(islice(A029781_gen(), 20)) # Chai Wah Wu, Apr 03 2023
KEYWORD
nonn,base
STATUS
approved
Cubes such that digits of cube root of n appear in both n^(2/3) and n.
+10
0
0, 1, 125, 216, 1000, 1331, 15625, 125000, 166375, 216000, 262144, 287496, 438976, 970299, 1000000, 1030301, 1331000, 1367631, 1404928, 1520875, 1560896, 1953125, 11390625, 15625000, 20796875, 23887872, 33698267
OFFSET
1,3
FORMULA
a(n) = A029780(n)^3. - Sean A. Irvine, Mar 04 2020
KEYWORD
nonn,base
STATUS
approved

Search completed in 0.004 seconds