|
Search: id:A130309
|
|
|
| A130309 |
|
Primes of the form [n!! - (n-1)!! + (n-2)!! -....1!! ]+1. |
|
+0 2
|
|
| 2, 3, 7, 67, 153979499670311863, 96139392052480758114443739387402080695373863
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The next term is too large to include.
|
|
EXAMPLE
|
2 = 1!! + 1 or 2!! - 1!! + 1.
7 = 4!! - 3!! + 2!! - 1!! +1 = 8 - 3 + 2 - 1 + 1.
|
|
MAPLE
|
P:=proc(n) local a, i, j, k, w; for i from 1 by 1 to n do a:=0; for j from i by -1 to 0 do k:=j; w:=j-2; while w>0 do k:=k*w; w:=w-2; od; a:=a+k*(-1)^j od; if isprime(abs(a)+1) then print(abs(a)+1); fi; od; end: P(1000);
|
|
CROSSREFS
|
Cf. A071828, A130308.
Adjacent sequences: A130306 A130307 A130308 this_sequence A130310 A130311 A130312
Sequence in context: A059785 A087358 A057736 this_sequence A090870 A088542 A075840
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Paolo P. Lava & Giorgio Balzarotti (ppl(AT)spl.at), May 21 2007
|
|
|
Search completed in 0.002 seconds
|