Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A070228 Number of perfect powers (A001597) not exceeding 2^n. 3
1, 1, 2, 3, 5, 8, 11, 16, 23, 31, 42, 58, 82, 114, 156, 217, 299, 417, 583, 814, 1136, 1589, 2224, 3116, 4369, 6136, 8623, 12128, 17064, 24023, 33839, 47689, 67227, 94805, 133738, 188710, 266351, 376019, 530941, 749820, 1059097, 1496144, 2113802, 2986770, 4220666 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..6643 (terms 0..1000 from Robert G. Wilson v)
FORMULA
a(n) = 1 - Sum_{k=2..n} Moebius(k)*floor(2^(n/k)-1). - Robert G. Wilson v, Jan 20 2015
a(n) = A188951(n) + 1 for n > 1. - Amiram Eldar, May 19 2022
EXAMPLE
How many powers are there not exceeding 2^4?: 1, 4, 8, 9, 16. Hence a(4) = 5.
a(22)=2224: there are 2224 powers not exceeding 2^22.
MATHEMATICA
f[n_] := 1 - Sum[ MoebiusMu[x]*Floor[2^(n/x) - 1], {x, 2, n}]; Array[f, 44, 0] (* Robert G. Wilson v, Jan 20 2015 *)
PROG
(PARI) a(n) = 1 - sum(k=2, n, moebius(k)*(sqrtnint(2^n, k)-1));
(Python)
from sympy import mobius, integer_nthroot
def A070228(n): return int(1+sum(mobius(x)*(1-integer_nthroot(1<<n, x)[0]) for x in range(2, n+1))) # Chai Wah Wu, Aug 13 2024
CROSSREFS
Sequence in context: A320593 A006336 A175831 * A173599 A006304 A344650
KEYWORD
nonn,easy,changed
AUTHOR
Donald S. McDonald, May 14 2002
EXTENSIONS
a(39)-a(44) from Alex Ratushnyak, Jan 02 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 August 18 17:33 EDT 2024. Contains 375269 sequences. (Running on oeis4.)