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.

Showing 1-2 of 2 results.

A225959 a(n) = sigma(2*n^3) - sigma(n^3).

Original entry on oeis.org

2, 16, 80, 128, 312, 640, 800, 1024, 2186, 2496, 2928, 5120, 4760, 6400, 12480, 8192, 10440, 17488, 14480, 19968, 32000, 23424, 25440, 40960, 39062, 38080, 59048, 51200, 50520, 99840, 61568, 65536, 117120, 83520, 124800, 139904, 104120, 115840, 190400, 159744, 141288, 256000
Offset: 1

Views

Author

Paul D. Hanna, May 22 2013

Keywords

Comments

Here sigma(n) = A000203(n), the sum of the divisors of n.

Examples

			L.g.f.: L(x) = 2*x + 16*x^2/2 + 80*x^3/3 + 128*x^4/4 + 312*x^5/5 + 640*x^6/6 +...
where
exp(L(x)) = 1 + 2*x + 10*x^2 + 44*x^3 + 134*x^4 + 468*x^5 + 1524*x^6 + 4584*x^7 + 13862*x^8 +...+ A225958(n)*x^n +...
exp(-L(-x)) = 1 + 2*x - 6*x^2 + 12*x^3 + 38*x^4 - 108*x^5 + 148*x^6 + 168*x^7 +...+ A225957(n)*x^n +...
		

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSigma[1, 2*n^3] - DivisorSigma[1, n^3]; Array[a, 50] (* Amiram Eldar, Mar 17 2024 *)
  • PARI
    {a(n)=sigma(2*n^3)-sigma(n^3)}
    for(n=1, 50, print1(a(n), ", "))

Formula

a(n) = A054785(n^3).
Logarithmic derivative of A225958.
Sum_{k=1..n} a(k) ~ c * n^4, where c = (15/44) * zeta(4) * Product_{p prime} (1 + 1/p^2 + 1/p^3) = (15/44) * A013662 * A330595 = 0.64531050605789193162... . - Amiram Eldar, Mar 17 2024

A224902 O.g.f.: exp( Sum_{n>=1} (sigma(2*n^4) - sigma(n^4)) * x^n/n ).

Original entry on oeis.org

1, 2, 18, 114, 450, 2298, 10466, 43314, 184402, 749490, 2942274, 11437026, 43364818, 161089130, 589901682, 2123791130, 7531395154, 26360805018, 91057065522, 310718196626, 1048405959266, 3499152601394, 11559430074418, 37818135048962, 122582070331106, 393830310786706, 1254654362883954
Offset: 0

Views

Author

Paul D. Hanna, Jul 24 2013

Keywords

Comments

Compare to the Jacobi theta_3 function:
1 + 2*Sum_{n>=1} x^(n^2) = exp( Sum_{n>=1} -(sigma(2*n) - sigma(n))*(-x)^n/n ).
Here sigma(n) = A000203(n), the sum of the divisors of n.

Examples

			G.f.: A(x) = 1 + 2*x + 18*x^2 + 114*x^3 + 450*x^4 + 2298*x^5 +...
where
log(A(x)) = 2*x + 32*x^2/2 + 242*x^3/3 + 512*x^4/4 + 1562*x^5/5 +...+ A224903(n)*x^n/n +...
		

Crossrefs

Programs

  • PARI
    {a(n)=polcoeff(exp(sum(m=1, n, (sigma(2*m^4)-sigma(m^4))*x^m/m)+x^2*O(x^n)), n)}
    for(n=0, 30, print1(a(n), ", "))

Formula

O.g.f.: exp( Sum_{n>=1} A054785(n^4)*x^n/n ).
Logarithmic derivative equals A224903.
a(n) == 2 (mod 4) for n>0 (conjecture).
Showing 1-2 of 2 results.