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!)
A067905 Primes of the form floor((4/3)^k). 5
2, 3, 5, 7, 13, 17, 23, 31, 55933, 176777, 23517191, 986549121979, 17400648639910404101, 2314855893053257675837, 230183094544225348379651767, 1275923270962002367060689449590920800609 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..32
Eric Weisstein's World of Mathematics, Power Floors
MATHEMATICA
f[n_]:=Floor[(4/3)^n]; lst={}; Do[p=f[n]; If[PrimeQ[p], AppendTo[lst, p]], {n, 0, 6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jul 02 2009 *)
Select[Floor[(4/3)^Range[330]], PrimeQ] (* Harvey P. Dale, Dec 12 2018 *)
PROG
(PARI) v=[]; for(k=2, 8004, if(ispseudoprime(t=floor((4/3)^k)), v=concat(v, t))); v
CROSSREFS
Sequence in context: A155777 A262839 A234695 * A042993 A308711 A033664
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Mar 03 2002
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 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)