OFFSET
1,2
COMMENTS
a(n) = x such that A054842(x) / x is integer.
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..1000
EXAMPLE
x = 48 -> y = 2^8*3^4 = 20736 and 20736 / 48 = 432.
x = 972 -> y = 2^2*3^7*5^9 = 17085937500 and 17085937500 / 972 = 17578125.
MAPLE
with(numtheory):P:=proc(q) local a, b, k, n;
for n from 1 to q do a:=n; b:=1;
for k from 1 to ilog10(n)+1 do b:=b*ithprime(k)^(a mod 10); a:=trunc(a/10);
od; if type(b/n, integer) then print(n); fi; od; end: P(10^9);
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Paolo P. Lava, Aug 27 2014
STATUS
approved