login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A246469 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_(k)*p_(2)^d_(k-1)*…*p_(k)^d_(1), where p_(i) is the i-th prime. Sequence lists the numbers x such that y / x is integer. 2
1, 2, 4, 8, 18, 27, 36, 48, 54, 64, 72, 96, 125, 135, 162, 225, 375, 432, 486, 625, 648, 675, 864, 972, 1225, 1250, 1323, 1350, 1575, 1701, 1715, 1875, 2250, 2646, 2835, 2916, 3375, 3528, 3645, 3675, 3750, 3969, 4116, 4375, 4536, 4725, 4860, 5145, 5488, 5832 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) = x such that A189398(x) / x is integer.
LINKS
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
Sequence in context: A185178 A351471 A229718 * A092507 A347036 A297188
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 December 4 01:51 EST 2023. Contains 367541 sequences. (Running on oeis4.)