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!)
A358602 Define u such that u(1) = k and u(n) = u(n-1) + (-1)^n*(n!) for n > 1. Terms are numbers k for which the number of consecutive values of u(i), starting at u(1) = k, that are primes reaches a new record high. 0
2, 3, 11, 107, 119657, 2513657, 8448047, 210336167 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
If k = 2, u(1) = 2 is prime, and no lesser number has this property, thus 2 is a term.
If k = 11, u(1) = 11, u(2) = 11 + 2! = 13, u(3) = 13 - 3! = 7 and u(4) = 7 + 4! = 31 are primes, and no lesser number has this property, thus 11 is a term.
PROG
(PARI)
card(k)=my(s=k, c=2, p=1); while(isprime(s), p*=c; s+=if(c%2, -p, p); c++); c-=2
rec(kk=10^9)=my(r=0); forprime(k=1, kk, x=card(k); if(x>r, if(r>0, print1(", ")); print1(k); r=x))
CROSSREFS
Sequence in context: A292710 A300898 A079853 * A050721 A058114 A042337
KEYWORD
nonn,more
AUTHOR
Jean-Marc Rebert, Nov 23 2022
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 August 31 19:25 EDT 2024. Contains 375573 sequences. (Running on oeis4.)