[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A139068
Primes of the form k!/9 + 1.
35
4481, 611402462201343216650033936533361654773516861440000000001, 234195255375503079690400057633265510581087082006817356924774723468294901747510352675631491470712754833859385753600000000000000000001
OFFSET
1,1
COMMENTS
For numbers k for which (9+k!)/9 is prime see A137390.
LINKS
FORMULA
a(n) = A139156(A137390(n)). - Amiram Eldar, Oct 14 2024
MATHEMATICA
a = {}; Do[If[PrimeQ[(n! + 9)/9], AppendTo[a, [(n! + 9)/9]], {n, 1, 150}]; a
Select[Range[100]!/9+1, PrimeQ] (* Harvey P. Dale, Aug 17 2017 *)
PROG
(PARI) for(n=6, 1e4, if(ispseudoprime(t=n!/9+1), print1(t", "))) \\ Charles R Greathouse IV, Jul 15 2011
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 07 2008
STATUS
approved