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-3 of 3 results.

A100289 Numbers k such that (1!)^2 + (2!)^2 + (3!)^2 + ... + (k!)^2 is prime.

Original entry on oeis.org

2, 3, 4, 5, 7, 8, 10, 18, 21, 42, 51, 91, 133, 177, 182, 310, 3175, 9566, 32841
Offset: 1

Views

Author

T. D. Noe, Nov 11 2004 and Dec 11 2004

Keywords

Comments

All k <= 310 yield provable primes.
Write the sum as S(2,k)-1, where S(m,k) = Sum_{i=0..k} (i!)^m. Let p=1248829. Because p divides S(2,p-1)-1, p divides S(2,k)-1 for all k >= p-1. Hence there are no primes for k >= p-1.

Crossrefs

Cf. A100288 (primes of the form (1!)^2 + (2!)^2 + (3!)^2 +...+ (k!)^2).
Cf. A061062 ((0!)^2 + (1!)^2 + (2!)^2 + (3!)^2 +...+ (n!)^2).
Cf. A289947 (k!^6), A290014 (k!^10).
Cf. also A104344.

Programs

Extensions

a(18) from T. D. Noe, Feb 15 2006
a(19) from Serge Batalov, Jul 29 2017

A289946 a(n) = Sum_{k=1..n} k!^6.

Original entry on oeis.org

1, 65, 46721, 191149697, 2986175149697, 139317055679149697, 16390300280131775149697, 4296598745804900241599149697, 2283384320190476620685217983149697, 2283382306976051006261597069217983149697
Offset: 1

Views

Author

Eric W. Weisstein, Jul 16 2017

Keywords

Crossrefs

Cf. A007489 (k!), A104344 (k!^2), A289945 (k!^4).
Cf. A289947 (indices giving primes).

Programs

  • Mathematica
    Table[Sum[k!^6, {k, n}], {n, 10}]
    Accumulate[(Range[10]!)^6] (* Harvey P. Dale, May 14 2023 *)
  • PARI
    a(n) = sum(k=1, n, k!^6); \\ Michel Marcus, Jul 16 2017

A290014 Values of n for which Sum_{k=1..n} k!^10 is prime.

Original entry on oeis.org

3, 4, 5, 16, 25
Offset: 1

Views

Author

Eric W. Weisstein, Jul 17 2017

Keywords

Comments

Sum_{k=1..n} k!^10 is divisible by 41 for n >= 40, and checking the terms below that gives Sum_{k=1..a(5)} k!^10 with a(5) = 25 as the final prime in the sequence.

Examples

			Sum_{k=1..3} k!^10 = 60467201 is prime.
Sum_{k=1..4} k!^10 = 63403441432577 is prime.
Sum_{k=1..5} k!^10 = 619173705643441432577 is prime.
...
		

Crossrefs

Cf. A100289 (k!^2), A289947 (k!^6).
Showing 1-3 of 3 results.