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!)
A352028 a(n) = Product p_{n*i}^e_i if the prime factorization of n is Product p_i^e_i. 2
1, 3, 13, 49, 47, 481, 107, 6859, 3721, 3277, 257, 121841, 397, 11309, 22261, 7890481, 653, 1390861, 881, 1416521, 78373, 47479, 1279, 157208087, 143641, 92011, 15813251, 7018237, 1889, 14701639, 2293, 38579489651, 309709, 207527, 461939, 2938615681, 3119 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Or replace prime(i) in n by prime(n*i).
All terms are odd.
LINKS
FORMULA
a(n) = A352001(n,n).
a(prime(n)) = A228529(n) = A000040(A033286(n)).
EXAMPLE
a(1) = 1 because 1 is the empty product.
a(2) = 3 = prime(2) = prime(2*1) because 2 = prime(1).
a(3) = 13 = prime(6) = prime(3*2) because 3 = prime(2).
a(4) = 49 = 7^2 = prime(4)^2 = prime(4*1)^2 because 4 = prime(1)^2.
MAPLE
a:= n-> mul(ithprime(n*numtheory[pi](i[1]))^i[2], i=ifactors(n)[2]):
seq(a(n), n=1..45);
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1] = prime(n*primepi(f[k, 1]))); factorback(f); \\ Michel Marcus, Mar 02 2022
CROSSREFS
Main diagonal of A352001.
Sequence in context: A122424 A027326 A108946 * A048482 A094978 A251743
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 01 2022
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)