cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A294194 a(n) is the sum of primes between n!+1 and (n+1)!.

Original entry on oeis.org

0, 2, 8, 90, 1493, 40148, 1536501, 78716604, 5275720734, 445867194366, 46449459576595, 5844108759723625, 873766735145244948, 153087877536458860660, 31062245895591356844637, 7225340509057562100376047, 1909774727511978452561271489, 569166269815032401548622424344
Offset: 0

Views

Author

Olivier Gérard, Oct 22 2017

Keywords

Examples

			a(2) = 3 + 5 = 8.
a(3) = 7 + 11 + 13 + 17 + 19 + 23 = 90.
		

Crossrefs

Cf. A063959.
Cf. A007504 (sum of first n primes).
Cf. A061232 (number of primes between n!+1 and (n+1)!).
Cf. A294193 (sum of integers between n!+1 and (n+1)!).
Cf. A294195 (product of primes between n!+1 and (n+1)!).

Programs

Formula

a(n) = A063959(n+1) - A063959(n). - Amiram Eldar, Jun 14 2024

Extensions

a(11)-a(13) from Iain Fox, Nov 23 2017
a(14) from Iain Fox, Nov 28 2017
a(15)-a(17) from Daniel Suteu, Nov 15 2018

A294195 Product of all primes between n!+1 and (n+1)!.

Original entry on oeis.org

1, 2, 15, 7436429, 141690116050851861774628683971583952877
Offset: 0

Views

Author

Olivier Gérard, Oct 29 2017

Keywords

Comments

The next term has 251 digits in base 10.

Crossrefs

Cf. A061232 (number of primes between n!+1 and (n+1)!).
Cf. A294193 (sum of integers between n!+1 and (n+1)!).
Cf. A294194 (sum of primes between n!+1 and (n+1)!).
Cf. A294196 (log of product of primes between n!+1 and (n+1)!).

Programs

  • Mathematica
    Table[Times @@ Table[Prime[i], {i, PrimePi[n!] + 1, PrimePi[(n + 1)!]}], {n, 0, 4}]
Showing 1-2 of 2 results.