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!)
A344991 Numbers k such that (2*k+1)*k!-1 is prime. 1

%I #48 Jun 26 2021 16:58:39

%S 1,3,5,15,20,44,45,73,80,93,295,5395

%N Numbers k such that (2*k+1)*k!-1 is prime.

%C a(13) > 10^4.

%p select(k -> isprime((2*k+1)*k!-1), [$1 .. 300])[];

%t Do[If[PrimeQ[(2*k + 1)*Factorial[k] - 1], Print[k]], {k, 1, 3000}]

%o (PARI) for(k=1, 3000, if(isprime((2*k+1)*k!-1), print1(k", ")))

%o (SageMath)

%o for k in range(1, 3000):

%o if is_prime((2*k+1)*factorial(k) - 1):

%o print(k)

%Y Cf. A002982, A344963.

%K nonn,hard,more

%O 1,2

%A _Reza K Ghazi_, Jun 07 2021

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 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)