A071523 Number of 11-smooth numbers <= n.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12, 13, 14, 15, 15, 16, 16, 17, 18, 19, 19, 20, 21, 21, 22, 23, 23, 24, 24, 25, 26, 26, 27, 28, 28, 28, 28, 29, 29, 30, 30, 31, 32, 32, 32, 33, 34, 35, 35, 35, 35, 36, 37, 38, 38, 38, 38, 39, 39, 39, 40, 41, 41, 42, 42, 42, 42, 43, 43, 44
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Accumulate[Table[If[Max[FactorInteger[n][[;;,1]]]<=11,1,0],{n,120}]] (* Harvey P. Dale, Sep 02 2024 *)
-
PARI
a(n)=sum(k=1,n,(k<4) || 13>vecmax(factor(k)~[1,]))
Formula
a(n) = Card{ k | A051038(k) <= n }.
Comments