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!)
A306458 a(n) = A001694(n)/A007947(A001694(n)), the powerful numbers divided by their squarefree kernel. 4
1, 2, 4, 3, 8, 5, 9, 16, 6, 7, 32, 12, 27, 10, 18, 11, 25, 64, 24, 13, 14, 20, 36, 15, 81, 128, 48, 17, 54, 49, 19, 28, 40, 72, 21, 22, 50, 256, 23, 96, 125, 108, 45, 26, 243, 56, 80, 29, 144, 30, 31, 44, 162, 100, 512, 33, 75, 192, 34, 35, 216, 63, 121, 52 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A permutation of the positive integers.
LINKS
FORMULA
A064549(a(n)) = A001694(n).
MAPLE
N:= 10^4: # to get terms corresponding to powerful numbers <= N
rad:= n -> convert(numtheory:-factorset(n), `*`):
S:= {1}:
p:= 1:
do
p:= nextprime(p);
if p^2 > N then break fi;
S:= S union map(t -> seq(t*p^i, i=2..floor(log[p](N/t))), select(`<=`, S, N/p^2));
od:
map(t -> t/rad(t), sort(convert(S, list))); # Robert Israel, Mar 20 2019
MATHEMATICA
p=Join[{1}, Select[ Range@ 12500, Min@ FactorInteger[#][[All, 2]] > 1 &]]; rad[n_] := Times @@ (First@# & /@ FactorInteger@ n); p/(rad/@p) (* after Harvey P. Dale at A001694 and Robert G. Wilson v at A007947 *)
PROG
(PARI) apply(x->(x/factorback(factorint(x)[, 1])), select(x->ispowerful(x), vector(1600, k, k))) \\ Michel Marcus, Feb 17 2019
CROSSREFS
Sequence in context: A075378 A101905 A297075 * A287637 A053211 A131390
KEYWORD
nonn,look
AUTHOR
Amiram Eldar, Feb 17 2019
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 April 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)