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!)
A095379 Primes of the form 1 + A094125(k) = 1 + 3*2^k + 2*3^k. 1
13, 31, 79, 211, 4759, 40903, 121171, 360439, 1075171, 2326095799, 62774702131, 564909404611, 53177629140127471641559, 1668770336663931954974790774345703 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 1 + A094125(A095378(n)). - Jinyuan Wang, Aug 26 2019
EXAMPLE
The prime 211 is a term because 211 = 1 + 3*2^4 + 2*3^4.
MATHEMATICA
Select[Table[1 + 3*2^k + 2*3^k, {k, 1, 70}], PrimeQ] (* Amiram Eldar, Aug 18 2024 *)
PROG
(PARI) lista(kmax) = {my(p); for(k = 1, kmax, p = 1 + 3*2^k + 2*3^k; if(isprime(p), print1(p, ", "))); } \\ Amiram Eldar, Aug 18 2024
CROSSREFS
Sequence in context: A107288 A335732 A342706 * A350095 A160772 A271575
KEYWORD
nonn,changed
AUTHOR
Labos Elemer, Jun 07 2004
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 August 22 04:22 EDT 2024. Contains 375356 sequences. (Running on oeis4.)