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.

A061391 a(n) = t(n,3) = Sum_{d|n} tau(d^3), where tau(n) = number of divisors of n, cf. A000005.

This page as a plain text file.
%I A061391 #47 Aug 20 2021 16:57:03
%S A061391 1,5,5,12,5,25,5,22,12,25,5,60,5,25,25,35,5,60,5,60,25,25,5,110,12,25,
%T A061391 22,60,5,125,5,51,25,25,25,144,5,25,25,110,5,125,5,60,60,25,5,175,12,
%U A061391 60,25,60,5,110,25,110,25,25,5,300,5,25,60,70,25,125,5,60,25,125,5,264
%N A061391 a(n) = t(n,3) = Sum_{d|n} tau(d^3), where tau(n) = number of divisors of n, cf. A000005.
%C A061391 Inverse Mobius transform of A048785. - _R. J. Mathar_, Feb 09 2011
%H A061391 Antti Karttunen, <a href="/A061391/b061391.txt">Table of n, a(n) for n = 1..10000</a>
%F A061391 t(n, k) = Sum_{d|n} tau(d^k) is multiplicative: if the canonical factorization of n = Product p^e(p) over primes then t(n, k) = Product t(p^e(p), k), t(p^e(p), k) = (1/2) *(k*e(p)+2)*(e(p)+1).
%F A061391 For k=2 we get an interesting identity: Sum_{d|n} tau(d^2)=(tau(n))^2, cf. A048691, A035116.
%F A061391 a(n) = Sum_{d|n} tau(n*d). - _Benoit Cloitre_, Nov 30 2002
%F A061391 G.f.: Sum_{n>=1} tau(n^3)*x^n/(1-x^n). - _Joerg Arndt_, Jan 01 2011
%F A061391 Dirichlet g.f.: zeta(s)^3 * Product_{primes p} (1 + 2/p^s). - _Vaclav Kotesovec_, May 15 2021
%F A061391 Dirichlet g.f.: zeta(s)^5 * Product_{primes p} (1 - 3/p^(2*s) + 2/p^(3*s)). - _Vaclav Kotesovec_, Aug 20 2021
%t A061391 f[p_, e_] := (3*e^2 + 5*e + 2)/2; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Sep 16 2020 *)
%o A061391 (PARI)
%o A061391 A061391 = n -> sumdiv(n, d, numdiv(d^3));
%o A061391 for(n=1, 10000, write("b061391.txt", n, " ", A061391(n)));
%o A061391 \\ _Antti Karttunen_, Jan 17 2017
%o A061391 (PARI) for(n=1, 100, print1(direuler(p=2, n, (1 + 2*X)/(1 - X)^3)[n], ", ")) \\ _Vaclav Kotesovec_, May 15 2021
%o A061391 (PARI) for(n=1, 100, print1(direuler(p=2, n, (1 - 3*X^2 + 2*X^3)/(1 - X)^5)[n], ", ")) \\ _Vaclav Kotesovec_, Aug 20 2021
%Y A061391 Cf. t(n, 0) = A000005(n), t(n, 1) = A007425(n), t(n, 2) = A035116(n).
%Y A061391 Cf. A048691.
%K A061391 nonn,mult
%O A061391 1,2
%A A061391 _Vladeta Jovovic_, Apr 29 2001