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!)
A261145 Numbers n such that n!3 + 3^10 is prime, where n!3 = n!!! is a triple factorial number (A007661). 6
2, 4, 7, 11, 25, 38, 47, 94, 95, 155, 275, 277, 292, 299, 395, 409, 614, 1409, 1963, 3422, 5243, 5884, 5971, 8527, 10882, 13223, 16406, 20851, 28886 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding primes are: 59051, 59053, 59077, 59929, 608667049, 3091650738235049, 262134882788466747049, ...
a(30) > 50000.
Terms > 47 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3+59049.
OpenPFGW Project, Primality Tester
EXAMPLE
11!3 + 3^10 = 11*8*5*2 + 59049 = 59929 is prime, so 11 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 3] + 3^10] &]
PROG
(PARI) for(n=1, 1e3, if(ispseudoprime(prod(i=0, floor((n-1)/3), n-3*i) + 3^10), print1(n, ", "))) \\ Altug Alkan, Nov 18 2015
CROSSREFS
Sequence in context: A084992 A360886 A304040 * A277339 A153555 A259588
KEYWORD
nonn,more
AUTHOR
Robert Price, Nov 18 2015
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)