The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A246468 Given a number of k digits x = d_(k)*10^(k-1) + d_(k-1)*10^(k-2) + … + d_(2)*10 + d_(1), consider y = p_(1)^d_(1)*p_(2)^d_(2)*…*p_(k)^d_(k), where p_(i) is the i-th prime. Sequence lists the numbers x such that y / x is integer. 2
1, 2, 4, 8, 12, 16, 24, 36, 48, 54, 81, 96, 128, 135, 144, 162, 225, 288, 375, 486, 576, 625, 648, 675, 768, 972, 1296, 1575, 1875, 2187, 2268, 2625, 2646, 2688, 3087, 3136, 3375, 3528, 3675, 3888, 3969, 4116, 4374, 4802, 5145, 5292, 5488, 5625, 6048, 6174, 7056 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) = x such that A054842(x) / x is integer.
LINKS
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
Sequence in context: A328524 A322447 A170892 * A360641 A326807 A052184
KEYWORD
nonn,base,easy
AUTHOR
Paolo P. Lava, Aug 27 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 4 02:16 EDT 2024. Contains 373089 sequences. (Running on oeis4.)