The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A362973 The number of cubefull numbers (A036966) not exceeding 10^n. 4

%I #35 Jan 01 2024 11:56:28

%S 1,2,7,20,51,129,307,713,1645,3721,8348,18589,41136,90619,198767,

%T 434572,947753,2062437,4480253,9718457,21055958,45575049,98566055,

%U 213028539,460160083,993533517,2144335391,4626664451,9980028172,21523027285,46408635232,100053270534

%N The number of cubefull numbers (A036966) not exceeding 10^n.

%C The number of cubefull numbers not exceeding x is N(x) = c_0 * x^(1/3) + c_1 * x^(1/4) + c_2 * x^(1/5) + o(x^(1/8)), where c_0 (A362974), c_1 (A362975) and c_2 (A362976) are constants (Bateman and Grosswald, 1958; Finch, 2003).

%C The digits of a(3k) converge to A362974 as k -> oo. - _Chai Wah Wu_, May 13 2023

%D Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, section 2.6.1, pp. 113-115.

%H Chai Wah Wu, <a href="/A362973/b362973.txt">Table of n, a(n) for n = 0..36</a>

%H Paul T. Bateman and Emil Grosswald, <a href="https://doi.org/10.1215/ijm/1255380836">On a theorem of Erdős and Szekeres</a>, Illinois Journal of Mathematics, Vol. 2, No. 1 (1958), pp. 88-98.

%H A. Ivić and P. Shiu, <a href="https://doi.org/10.1215/ijm/1256046597">The distribution of powerful integers</a>, Illinois Journal of Mathematics, Vol. 26, No. 4 (1982), pp. 576-590.

%H Ekkehard Krätzel, <a href="https://doi.org/10.1007/BF01585911">On the distribution of square-full and cube-full numbers</a>, Monatshefte für Mathematik, Vol. 120, No. 2 (1995), pp. 105-119.

%H P. Shiu, <a href="https://doi.org/10.1017/S0017089500008351">The distribution of cube-full numbers</a>, Glasgow Mathematical Journal, Vol. 33, No. 3 (1991), pp. 287-295.

%H P. Shiu, <a href="https://doi.org/10.1017/S0305004100070705">Cube-full numbers in short intervals</a>, Mathematical Proceedings of the Cambridge Philosophical Society, Vol. 112, No. 1 (1992), pp. 1-5.

%e There are 2 cubefull numbers not exceeding 10, 1 and 8, therefore a(1) = 2.

%t a[n_] := Module[{max = 10^n}, CountDistinct@ Flatten@ Table[i^5 * j^4 * k^3, {i, Surd[max, 5]}, {j, Surd[max/i^5, 4]}, {k, CubeRoot[max/(i^5*j^4)]}]]; Array[a, 15, 0]

%o (Python)

%o from math import gcd

%o from sympy import factorint, integer_nthroot

%o def A362973(n):

%o m, c = 10**n, 0

%o for x in range(1,integer_nthroot(m,5)[0]+1):

%o if all(d<=1 for d in factorint(x).values()):

%o for y in range(1,integer_nthroot(z:=m//x**5,4)[0]+1):

%o if gcd(x,y)==1 and all(d<=1 for d in factorint(y).values()):

%o c += integer_nthroot(z//y**4,3)[0]

%o return c # _Chai Wah Wu_, May 11-13 2023

%Y Cf. A036966, A362974, A362975, A362976.

%Y Similar sequences: A070428, A118896.

%K nonn

%O 0,2

%A _Amiram Eldar_, May 11 2023

%E a(23)-a(31) from _Chai Wah Wu_, May 11 2023

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 May 21 02:29 EDT 2024. Contains 372720 sequences. (Running on oeis4.)