A094812 Number of odd composites between 2^n and 2^(n + 1).
0, 0, 0, 2, 3, 9, 19, 41, 85, 181, 375, 769, 1584, 3224, 6580, 13354, 27059, 54521, 110682, 223509, 450702, 908240, 1828936, 3680596, 7402790, 14883096, 29908688, 60081574, 120655821, 242228178, 486173375, 975559168, 1957148063, 3925643991
Offset: 0
Examples
a(3) = 2 because in the interval 2^3..2^4 = [8..16] there are two odd composites: 9 = 3^2, 15 = 3 * 5.
Programs
-
Mathematica
f[n_] := (2^(n - 1) - PrimePi[2^(n + 1)] + PrimePi[2^n]); Table[ f[n], {n, 32}] (* Robert G. Wilson v, Jun 15 2004 *)
Formula
Members of A071904 that lie between 2^n and 2^(n + 1).
Extensions
More terms from Robert G. Wilson v, Jun 15 2004
Comments