|
Search: id:A107352
|
|
|
| A107352 |
|
Number of positive integers <= 10^n that are divisible by no prime exceeding 11. |
|
+0 2
|
|
| 1, 10, 55, 192, 522, 1197, 2432, 4520, 7838, 12867, 20193, 30524, 44696, 63694, 88658, 120895, 161885, 213294, 276997, 355082, 449849, 563834, 699826, 860861, 1050260, 1271598, 1528765, 1825937, 2167611, 2558606, 3004075, 3509523
(list; graph; listen)
|
|
|
OFFSET
|
0,2
|
|
|
COMMENT
|
Lehmer quotes A. E. Western as computing a(5) = 1197, a(8) = 7838 and a(10) = 20193.
Number of integers of the form 2^a*3^b*5^c*7^d*11^e <= 10^n.
|
|
REFERENCES
|
D. H. Lehmer, The lattice points of an n-dimensional tetrahedron, Duke Math. J., 7 (1941), 341-353.
|
|
MATHEMATICA
|
fQ[n_] := FactorInteger[n][[ -1, 1]] < 13; c = 1; k = 1; Do[ While[k <= 10^n, If[ fQ[k], c++ ]; k++ ]; Print[c], {n, 0, 9}] (* Or *)
n = 32; t = Select[ Flatten[ Table[11^e*Select[ Flatten[ Table[7^d*Select[ Flatten[ Table[5^c*Select[ Flatten[ Table[2^a*3^b, {a, 0, Log[2, 10^n]}, {b, 0, Log[3, 10^n]}]], # <= 10^n &], {c, 0, Log[5, 10^n]}]], # <= 10^n &], {d, 0, Log[7, 10^n]}]], # <= 10^n &], {e, 0, Log[11, 10^n]}]], # <= 10^n &]; Table[ Length[ Select[t, # <= 10^n &]], {n, 0, 32}] (from Robert G. Wilson v (rgwv(AT)rgwv.com), May 24 2005)
|
|
CROSSREFS
|
Sequence in context: A119334 A074977 A069155 this_sequence A127761 A070212 A008502
Adjacent sequences: A107349 A107350 A107351 this_sequence A107353 A107354 A107355
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
N. J. A. Sloane (njas(AT)research.att.com), May 23 2005
|
|
EXTENSIONS
|
More terms from Robert G. Wilson v (rgwv(AT)rgwv.com) and Don Reble (djr(AT)nk.ca), May 26 2005
|
|
|
Search completed in 0.002 seconds
|