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!)
A143931 a(n) is the smallest positive integer x such that x^2 - n! is prime. 2
2, 2, 3, 11, 19, 31, 79, 209, 607, 1921, 6337, 21907, 78913, 295289, 1143539, 4574149, 18859733, 80014841, 348776611, 1559776279, 7147792823, 33526120127, 160785623627, 787685471389, 3938427356623, 20082117944263, 104349745809077 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For the smallest positive prime numbers of the form x^2 - n! see A143932.
For primes x in this sequence see A143933.
LINKS
EXAMPLE
a(1)=2 because 2^2-1! = 3 is prime;
a(2)=2 because 2^2-2! = 2 is prime;
a(3)=3 because 3^2-3! = 3 is prime;
a(4)=11 because 11^2-4! = 97 is prime.
MATHEMATICA
a = {}; Do[k = Round[Sqrt[n! ]] + 1; While[ ! PrimeQ[k^2 - n! ], k++ ]; AppendTo[a, k], {n, 1, 50}]; a
spi[n_]:=Module[{k=Ceiling[Sqrt[n!]], nf=n!}, While[!PrimeQ[k^2-nf], k++]; k]; Array[ spi, 30] (* Harvey P. Dale, Feb 17 2023 *)
CROSSREFS
Sequence in context: A084650 A067919 A157301 * A143933 A284708 A265783
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 05 2008
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 April 17 21:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)