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!)
A198725 Primes of the form (6^n-11)/5. 1
5, 41, 257, 1553, 15672832817, 121871948002097, 4387390128075569, 161656255492952812128627920091307258673, 34917751186477807419783630739722367873841 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
These primes are also given by sum 6^k -1 with k>0 and are then companions of A165210 which corresponds also to sum 6^k +1 with k>0. (Be careful: there is a shifting between the k and the n values).
Corresponding exponents n are in A199165. - Gilbert Mozzo, Nov 05 2011
LINKS
EXAMPLE
(6^4-11)/5=257, which is in the sequence because is prime.
MATHEMATICA
lst={}; Do[If[PrimeQ[(6^n-11)/5], Print[(6^n-11)/5]; AppendTo[lst, (6^n-11)/5]], {n, 10^6}];
PROG
(Magma) [(6^n-11)/5: n in [1..10^3] | IsPrime((6^n-11) div 5)];
(PARI) for(n=1, 1e4, if(ispseudoprime(t=6^n\5-2), print1(t", "))) \\ Charles R Greathouse IV, Nov 01 2011
CROSSREFS
Sequence in context: A270182 A273313 A356198 * A190638 A083300 A308247
KEYWORD
nonn
AUTHOR
Gilbert Mozzo, Oct 29 2011
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 29 09:59 EDT 2024. Contains 371268 sequences. (Running on oeis4.)