cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A384789 The number of ways in which the n-th cubefull number can be expressed as b^3 * c^4 * d^5, with b, c and d >= 1.

This page as a plain text file.
%I A384789 #8 Jun 10 2025 11:36:49
%S A384789 1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,
%T A384789 1,1,1,3,1,1,1,1,1,2,1,2,1,1,3,1,1,1,1,1,1,1,1,2,1,1,1,1,3,1,1,1,1,1,
%U A384789 2,1,2,1,1,1,1,1,1,2,1,1,1,1,1,2,4,1,1
%N A384789 The number of ways in which the n-th cubefull number can be expressed as b^3 * c^4 * d^5, with b, c and d >= 1.
%C A384789 The positive values of the multiplicative function f(n) with f(p^e) = A008680(e). Or, equivalently, a(n) is the value of this function at A036966(n).
%H A384789 Amiram Eldar, <a href="/A384789/b384789.txt">Table of n, a(n) for n = 1..10000</a>
%F A384789 a(n) >= 1.
%e A384789 a(12) = 2 since A036966(12) = 256 = 2^8 has 2 representations as b^3*c^4*d^5: 2^3 * 2^5 (b = d = 2, c = 1) and 4^4 (b = d = 1, c = 4).
%e A384789 a(38) = 3 since A036966(38) = 4096 = 2^12 has 3 representations as b^3*c^4*d^5: 2^3 * 2^4 * 2^5 (b = c = d = 2), 8^4 (b = d = 1, c = 8) and 16^3 (b = 16, c = d = 1).
%t A384789 f[p_, e_] := Floor[(1+(-1)^e)*(-1)^Floor[e/2]/8 + (e^2 + 12*e + 90)/120]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Array[s, 10000], # > 0 &]
%o A384789 (PARI) f(e) = floor((1+(-1)^e)*(-1)^floor(e/2)/8 + (e^2 + 12*e + 90)/120);
%o A384789 list(kmax) = {my(e); for(k = 1, kmax, e = factor(k)[, 2]; if(k == 1 || vecmin(e) > 2, print1(vecprod(apply(x -> f(x), e)), ", ")));}
%Y A384789 Cf. A008680, A036966, A057523 (powerful analog), A384791.
%K A384789 nonn,easy
%O A384789 1,12
%A A384789 _Amiram Eldar_, Jun 10 2025