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!)
A220849 a(n) = Product_{d|n} Product_{d_x|n , d_x <= d} d_x. 1
1, 2, 3, 16, 5, 432, 7, 1024, 81, 2000, 11, 71663616, 13, 5488, 10125, 1048576, 17, 816293376, 19, 2048000000, 27783, 21296, 23, 219122084616339456, 625, 35152, 59049, 15420489728, 29, 2550916800000000000, 31, 34359738368, 107811, 78608, 214375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture: sequence is injective (all terms of this sequence occur only once).
The subsequence of fixed points consists of 1 together with the primes (A008578). - Bernard Schott, Oct 26 2021
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..2000 (terms 1..100 from Jaroslav Krizek)
FORMULA
a(p) = p for prime p.
From Bernard Schott, Oct 29 2021: (Start)
For p prime and k >= 0, a(p^k) = p^A000292(k).
For n = p*q, p < q primes (A006881), a(n) = p*n^3. (End)
EXAMPLE
The divisors of 6 are 1, 2, 3, 6. a(n) = 1*(1*2)*(1*2*3)*(1*2*3*6) = 1*2*6*36 = 432.
MATHEMATICA
a[n_] := Module[{d = Divisors[n], nd}, nd = Length[d]; Product[d[[i]]^(nd - i + 1), {i, 1, nd}]]; Array[a, 35] (* Amiram Eldar, Oct 23 2021 *)
PROG
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, vecprod(select(x->(x<=d[k]), d))); \\ Michel Marcus, Oct 23 2021
CROSSREFS
Cf. A000292, A006881, A007955, A008578 (fixed points), A064945, A266265.
Sequence in context: A128537 A266265 A259209 * A066841 A266211 A363920
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Dec 22 2012
EXTENSIONS
a(24) corrected by Seiichi Manyama, Oct 23 2021
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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)