OFFSET
1,2
COMMENTS
a(n) = x such that A189398(x) / x is an integer.
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..1000
EXAMPLE
x = 48 -> y = 2^4*3^8 = 104976 and 104976 / 48 = 2187.
x = 972 -> y = 2^9*3^7*5^2 = 27993600 and 27993600 / 972 = 28800.
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(ilog10(n)+2-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