[go: up one dir, main page]

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

A139072
Smallest parameter k such that (n+k!)/n is prime.
7
1, 2, 3, 4, 7, 3, 11, 7, 8, 5, 13, 4, 28, 10, 7, 8, 43, 6, 21, 5, 7, 16, 48, 4, 14, 17, 9, 7, 241, 5, 61, 11, 17, 17, 8, 10, 44, 38, 16, 6, 131, 9, 63, 12, 6, 43, 73, 9, 15, 10, 19, 14, 64, 11, 12, 9, 24, 32, 641, 5, 89, 31, 8, 8, 14, 11, 71, 19, 25, 7, 151, 6, 78, 62, 15, 35, 15, 22, 87
OFFSET
1,2
COMMENTS
a(n) >= A002034(n). - Charles R Greathouse IV, Jul 15 2011
a(878) > 5000. - Jinyuan Wang, Apr 01 2020
LINKS
MATHEMATICA
a = {}; Do[k = 1; While[ ! PrimeQ[(k! + n)/n], k++ ]; AppendTo[a, k], {n, 1, 100}]; a
PROG
(PARI) pr(n)=denominator(n)==1 && ispseudoprime(n)
a(n)=my(k); until(pr(k++!/n+1), ); k \\ Charles R Greathouse IV, Jul 15 2011
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 07 2008
STATUS
approved