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.

A330322 a(n) = Sum_{i=1..n} sigma(i)*sigma(i+1), where sigma(n) = A000203(n) is the sum of the divisors of n.

Original entry on oeis.org

3, 15, 43, 85, 157, 253, 373, 568, 802, 1018, 1354, 1746, 2082, 2658, 3402, 3960, 4662, 5442, 6282, 7626, 8778, 9642, 11082, 12942, 14244, 15924, 18164, 19844, 22004, 24308, 26324, 29348, 31940, 34532, 38900, 42358, 44638, 47998, 53038, 56818, 60850
Offset: 1

Views

Author

N. J. A. Sloane, Dec 12 2019

Keywords

References

  • Steven R. Finch, Mathematical Constants II, Encyclopedia of Mathematics and Its Applications, Cambridge University Press, Cambridge, 2018, p. 163.

Crossrefs

Cf. A000203.
Partial sums of A083539.

Programs

  • Mathematica
    f[n_] := DivisorSigma[1, n] * DivisorSigma[1, n + 1]; Accumulate @ Array[f, 100] (* Amiram Eldar, Mar 08 2020 *)
    Accumulate[Table[DivisorSigma[1, n*(n + 1)], {n, 1, 50}]] (* Vaclav Kotesovec, Aug 18 2021 *)

Formula

a(n) ~ (5/6) * n^3. - Amiram Eldar, Mar 08 2020