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

A118744
Primes of the form n!! + n - 1.
0
3, 5, 11, 19, 53, 953, 46091, 34459441, 3715891219, 6332659870762850657, 107145471557284795514880041
OFFSET
1,1
COMMENTS
No additional terms up to n=2000. - Harvey P. Dale, Jul 27 2017
REFERENCES
G. Balzarotti and P. P. Lava, Le sequenze di numeri interi, Hoepli, 2008, p. 159.
EXAMPLE
For n=2, 2!! + 2 - 1 = 2 + 2 - 1 = 3, which is prime;
for n=4, 4!! + 4 - 1 = 4*2 + 4 - 1 = 11, which is prime.
MAPLE
SFACT:= proc(n) local i, j, k; for k from 1 by 1 to n do i:=k; j:=k-2; while j >0 do i:=i*j; j:=j-2; od: if isprime(i+k-1) then print(i+k-1); fi; od: end: SFACT(550);
MATHEMATICA
Select[Table[n!!+n-1, {n, 100}], PrimeQ] (* Harvey P. Dale, Jul 27 2017 *)
CROSSREFS
Sequence in context: A117272 A243616 A147189 * A092672 A061068 A263925
KEYWORD
nonn
AUTHOR
STATUS
approved