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!)
A054640 a(n) is the sum of the divisors of the n-th primorial: a(n) = A000203(A002110(n)). 24
1, 3, 12, 72, 576, 6912, 96768, 1741824, 34836480, 836075520, 25082265600, 802632499200, 30500034969600, 1281001468723200, 56364064623820800, 2705475101943398400, 146095655504943513600, 8765739330296610816000, 543475838478389870592000, 36956357016530511200256000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Rafael Jakimczuk, Two Topics in Number Theory: Sum of Divisors of the Primorial and Sum of Squarefree Parts, International Mathematical Forum, Vol. 12, No. 7 (2017), pp. 331-338.
FORMULA
a(n+1) = a(n)*(prime(n)+1) = a(n)*A028815(n) (quotient=n-th prime+1 starting with 2).
a(n) ~ (6/Pi^2) * exp(gamma) * A002110(n) * log(prime(n)) + O(A002110(n)) (Jakimczuk, 2017). - Amiram Eldar, Feb 17 2021
a(n) = a(n-1) * A008864(n). - Flávio V. Fernandes, Mar 20 2021
MAPLE
a:= n-> mul(1+ithprime(j), j=1..n): seq(a(n), n=0..20); # Zerinvary Lajos, Aug 24 2008
MATHEMATICA
Table[Product[1 + Prime[i], {i, 1, n}], {n, 1, 100}] (* Geoffrey Critzer, Dec 01 2014 *)
PROG
(PARI) a(n)=prod(i=1, n, prime(i)+1) \\ Charles R Greathouse IV, Feb 13 2013
(Magma) [1/2*&*[(1+NthPrime(k)): k in [0..n-1]]: n in [2..19]]; // Vincenzo Librandi, May 08 2017
CROSSREFS
Sequence in context: A337061 A147998 A052676 * A139486 A260622 A348222
KEYWORD
nonn
AUTHOR
Labos Elemer, May 15 2000
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Apr 01 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 July 3 13:19 EDT 2024. Contains 373982 sequences. (Running on oeis4.)