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!)
A275272 a(n) = p - n!, where p is the second smallest prime > n!. 5
2, 3, 5, 7, 11, 13, 19, 31, 23, 19, 17, 43, 73, 41, 149, 41, 53, 61, 109, 37, 37, 71, 109, 193, 97, 173, 47, 101, 229, 163, 241, 83, 139, 103, 83, 577, 311, 47, 269, 61, 61, 107, 97, 89, 379, 149, 269, 83, 137, 167, 281, 89, 79, 443, 229, 157, 179, 563, 389 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
p-n! where p = nextprime(nextprime(n!)).
Is every term a prime?
LINKS
FORMULA
a(n) = A187874(n) - A000142(n). - Michel Marcus, Mar 05 2022
EXAMPLE
For n = 4, we have n! = 24, so that p = 31 and a(4) = 7.
MATHEMATICA
Table[NextPrime[n!, 2] - n!, {n, 1, 150}]
PROG
(PARI) a(n) = nextprime(nextprime(n!+1)+1) - n!; \\ Michel Marcus, Mar 05 2022
(Python)
from sympy import factorial, nextprime
def a(n): fn = factorial(n); return nextprime(nextprime(fn)) - fn
print([a(n) for n in range(1, 60)]) # Michael S. Branicky, Mar 05 2022
CROSSREFS
Sequence in context: A242738 A079153 A020616 * A329954 A362850 A338396
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 23 2016
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 23 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)