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!)
A257278 Prime powers p^m with p <= m. 5

%I #19 Oct 24 2020 04:11:58

%S 4,8,16,27,32,64,81,128,243,256,512,729,1024,2048,2187,3125,4096,6561,

%T 8192,15625,16384,19683,32768,59049,65536,78125,131072,177147,262144,

%U 390625,524288,531441,823543,1048576,1594323,1953125,2097152,4194304,4782969,5764801,8388608,9765625

%N Prime powers p^m with p <= m.

%C Might be called "high" powers of primes. Motivated by challenges for which low powers of large primes provide somewhat trivial solutions, cf. A257279. The definition also avoids the question of the whether prime itself is to be considered as a prime power or not, cf. A000961 vs. A025475. In view of the condition p <= n, up to 10^10, only powers of the primes 2, 3, 5 and 7 (namely, less than 10) can occur.

%C a(n) = A257572(n) ^ A257573(n). - _Reinhard Zumkeller_, May 01 2015

%H Reinhard Zumkeller, <a href="/A257278/b257278.txt">Table of n, a(n) for n = 1..10000</a>

%F Sum_{n>=1} 1/a(n) = Sum_{p prime} 1/(p^(p-1)*(p-1)) = 0.55595697220270661763... - _Amiram Eldar_, Oct 24 2020

%o (PARI) L=List();lim=10;forprime(p=1,lim,for(n=p,lim*log(lim)\log(p),listput(L,p^n)));listsort(L);L

%o (Haskell)

%o import Data.Set (singleton, deleteFindMin, insert)

%o a257278 n = a257278_list !! (n-1)

%o a257278_list = f (singleton (4, 2)) 27 (tail a000040_list) where

%o f s pp ps@(p:ps'@(p':_))

%o | qq > pp = pp : f (insert (pp * p, p) s) (p' ^ p') ps'

%o | otherwise = qq : f (insert (qq * q, q) s') pp ps

%o where ((qq, q), s') = deleteFindMin s

%o -- _Reinhard Zumkeller_, May 01 2015

%Y Cf. A000961, A025475, A257279.

%Y Cf. A000040, A051674 (subsequence).

%Y Subsequence of A122494 and A192135 (p < m, subsequence).

%Y Cf. A257572, A257573.

%K nonn

%O 1,1

%A _M. F. Hasler_, Apr 28 2015

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 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)