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”).

A139064
Primes of the form (7+k!)/7.
11
5702401, 186810624001, 2988969984001, 2215887149047283712000001, 1476163995198020704238093048217600000001, 19811874077955690819705574245769915192271839538955347505831613562880000000000001
OFFSET
1,1
COMMENTS
For numbers k for which (7+k!)/7 is prime see A139065.
LINKS
FORMULA
a(n) = A139154(A139065(n)). - Amiram Eldar, Oct 14 2024
MATHEMATICA
a = {}; Do[If[PrimeQ[(n! + 7)/7], AppendTo[a, (n! + 7)/7]], {n, 1, 50}]; a
PROG
(PARI) for(k=7, 1e3, if(ispseudoprime(t=k!/7+1), print1(t", "))) \\ Charles R Greathouse IV, Jul 15 2011
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 07 2008
STATUS
approved