A073827 Numbers n such that 1 + 0!*1!*2!*...*n! is prime.
0, 1, 2, 3, 7, 14
Offset: 1
Keywords
Programs
-
PARI
pr=1; for(n=0,115, pr=pr*n!; if(isprime(pr+1), print1(n,",")))
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.
pr=1; for(n=0,115, pr=pr*n!; if(isprime(pr+1), print1(n,",")))
Comments