The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A272272 Numbers k such that 4^k-3^(k+1) is prime. 0

%I #14 Mar 20 2022 04:26:26

%S 4,8,24,36,48,246,608,734,774,824,948,1244,3230,4656,5448,6360,7598,

%T 15390,48158,86754

%N Numbers k such that 4^k-3^(k+1) is prime.

%C a(21) > 10^5.

%e 8 is a member since 4^8 - 3^9 = 65536-19683 = 45853 which is a prime number.

%t Select[Range[4, 100000], PrimeQ[4^# - 3^(# + 1)] &]

%o (PARI) lista(nn) = for(n=1, nn, if(ispseudoprime(4^n-3^(n+1)), print1(n, ", "))); \\ _Altug Alkan_, Apr 24 2016

%Y Cf. A093713, A082103, A093717, A093793, A096185, A093794, A093795, A096186, A271883.

%K nonn,more

%O 1,1

%A _Robert Price_, Apr 24 2016

%E Typo in a(11) corrected by _Georg Fischer_, Mar 19 2022

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 14 07:35 EDT 2024. Contains 372530 sequences. (Running on oeis4.)