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!)
A246550 Prime powers p^e where p is a prime and e >= 4. 2
16, 32, 64, 81, 128, 243, 256, 512, 625, 729, 1024, 2048, 2187, 2401, 3125, 4096, 6561, 8192, 14641, 15625, 16384, 16807, 19683, 28561, 32768, 59049, 65536, 78125, 83521, 117649, 130321, 131072, 161051, 177147, 262144, 279841, 371293, 390625, 524288, 531441, 707281, 823543, 923521, 1048576, 1419857, 1594323, 1771561 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = Sum_{p prime} 1/(p^3*(p-1)) = 0.1461466097... - Amiram Eldar, Oct 24 2020
MAPLE
N:= 10^7: # to get all terms <= N
{seq(seq(p^m, m=4..floor(log[p](N))), p = select(isprime, [2, seq(2*i+1, i=1..floor(N^(1/4)))]))}; # Robert Israel, Aug 29 2014
MATHEMATICA
With[{max = 10^6}, Sort @ Flatten @ Table[p^Range[4, Floor[Log[p, max]]], {p, Select[Range[Surd[max, 4]], PrimeQ]}]] (* Amiram Eldar, Oct 24 2020 *)
PROG
(PARI) m=10^7; v=[]; forprime(p=2, m^(1/4), e=4; while(p^e<=m, v=concat(v, p^e); e++)); v=vecsort(v) \\ Jens Kruse Andersen, Aug 29 2014
CROSSREFS
Sequence in context: A369170 A036967 A076468 * A197917 A317475 A335161
KEYWORD
nonn
AUTHOR
Joerg Arndt, Aug 29 2014
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)