The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A235392 Primes of the form (p! + q!)/ p! where p= prime(k) and q= prime(k+1), in order of increasing k. 1
43, 157, 19183, 22651, 37057, 121453, 7923366007441921, 4496830293424385744456428801, 45045561823582321, 412807, 49907098805169447878401, 34672666242568358583785606401, 1041421 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The 6th term has 6 digits; the 44th term has 44 digits.
The 685th term has 349 digits.
LINKS
EXAMPLE
43 is in the sequence because (5! + 7!)/ 5! = (120 + 5040)/120 = 43 which is prime and 5 and 7 are consecutive primes.
157 is in the sequence because (11! + 13!)/ 11! = (39916800 + 6227020800)/ 39916800 = 157 which is prime and 11 and 13 are consecutive primes.
MAPLE
KD := proc() local a, b, d; a:=ithprime(n); b:=ithprime(n+1); d:=(a! + b!)/ a!; if isprime(d) then RETURN (d); fi; end: seq(KD(), n=1..300);
MATHEMATICA
Select[((#[[1]]!+#[[2]]!)/#[[1]]!&/@Partition[Prime[Range[ 300]], 2, 1]), PrimeQ] (* Harvey P. Dale, Mar 07 2019 *)
CROSSREFS
Cf. A000040 (prime numbers).
Cf. A100858 (primes:(p-1)! + p).
Sequence in context: A142573 A142691 A200845 * A078852 A078956 A206399
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Jan 09 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 11 17:16 EDT 2024. Contains 373315 sequences. (Running on oeis4.)