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!)
A351252 a(n) = sigma(n) * A276086(n), pointwise product of the sum of divisors function and the primorial base exp-function. 3
2, 9, 24, 63, 108, 60, 80, 225, 390, 810, 1080, 700, 700, 1800, 3600, 6975, 8100, 4875, 5000, 15750, 24000, 40500, 54000, 37500, 38750, 78750, 150000, 315000, 337500, 504, 448, 1323, 2016, 3402, 6048, 3185, 2660, 6300, 11760, 28350, 26460, 16800, 15400, 44100, 81900, 113400, 151200, 108500, 99750, 244125, 378000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A000203(n) * A276086(n).
MATHEMATICA
Array[Block[{i = 1, m = 1, n = #, p}, While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; DivisorSigma[1, #]*m] &, 51] (* Michael De Vlieger, Feb 17 2022, after Jean-François Alcover at A276086 *)
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
A351252(n) = (sigma(n) * A276086(n));
CROSSREFS
Cf. also A324580, A341529, A351458.
Sequence in context: A274543 A356114 A079997 * A275260 A248436 A354016
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 17 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 23 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)