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!)
A204657 Numbers n such that n!10 + 2 is prime. 14
0, 1, 3, 5, 9, 11, 13, 19, 21, 25, 41, 57, 79, 127, 135, 149, 165, 177, 193, 209, 223, 255, 273, 287, 297, 375, 433, 459, 481, 565, 1079, 1435, 1543, 1771, 1913, 1983, 2063, 2305, 2653, 6789, 8757, 11149, 13671, 15433, 16369, 17261, 18129, 22129, 22785, 22875, 25235, 25247, 26329, 27675, 33391, 39075, 41195, 47435, 47621, 48409, 59235, 59715, 61571, 65433, 78761, 83033 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
n!10 = Product_{k=0..floor((n-1)/10)}(n - 10k).
a(61) > 50000. - Robert Price, Jun 10 2012
The first 11 primes associated with this sequence: 3, 3, 5, 7, 11, 13, 41, 173, 233, 1877, 293603. - Robert Price, Mar 10 2017
a(67) > 10^5. - Robert Price, Mar 31 2017
LINKS
C. Caldwell and H. Dubner (Eds): The top ten prime numbers: from the unpublished collections of R. Ondrejka (May 2001), Table 21 F, p. 75.
Nathan Russell, n!10+2 results, primenumbers group, Jan 2012.
Nathan Russell, n!10+2 results, message 23995 in primenumbers Yahoo group, Jan 17, 2012.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 10] + 2] &]
PROG
(PARI) for(n=0, 9999, isprime(prod(i=0, (n-2)\10, n-10*i)+2)& print1(n", "))
CROSSREFS
Sequence in context: A161781 A007950 A034936 * A167791 A139099 A152259
KEYWORD
nonn,hard
AUTHOR
M. F. Hasler, Jan 17 2012
EXTENSIONS
a(40)-a(59) from Robert Price, Jun 10 2012
Inserted missing term of 6789 by Robert Price, Mar 10 2017
a(61)-a(66) from Robert Price, Mar 31 2017
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 March 28 12:26 EDT 2024. Contains 371254 sequences. (Running on oeis4.)