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!)
A089137 Primes in the progression (n!- m)/m where n advances by 1 and m resets to 1 upon each prime occurrence. 0
5, 23, 59, 719, 5039, 10079, 181439, 907199, 7983359, 479001599, 622702079, 87178291199, 326918591999, 6974263295999, 59281238015999, 1600593426431999, 15205637551103999, 405483668029439999, 5676771352412159999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
n=5,m=1 (5!-1)/1 = 119=7*17 not prime m advances to 2.
n=5,m=2 (5!-2)/2 = 118/2 = 59 prime keep it.
PROG
(PARI) nfactm2d2(n, m) = { for(x=1, n, for(k=1, m, y=floor((x!- k)/k); if(isprime(y), print1(y", "); break) ) ) }
CROSSREFS
Sequence in context: A116581 A337750 A093622 * A361917 A362338 A098498
KEYWORD
base,easy,nonn
AUTHOR
Cino Hilliard, Dec 05 2003
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 May 7 21:53 EDT 2024. Contains 372317 sequences. (Running on oeis4.)