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.

A331080 a(n) = Sum_{i=1..n} d_3(i)*d_3(i+1), where d_3(n) = A007425(n).

Original entry on oeis.org

3, 12, 30, 48, 75, 102, 132, 192, 246, 273, 327, 381, 408, 489, 624, 669, 723, 777, 831, 993, 1074, 1101, 1191, 1371, 1425, 1515, 1695, 1749, 1830, 1911, 1974, 2163, 2244, 2325, 2649, 2757, 2784, 2865, 3135, 3225, 3306, 3387, 3441, 3765, 3927, 3954, 4089, 4359, 4467, 4629, 4791, 4845, 4935, 5205, 5475
Offset: 1

Views

Author

N. J. A. Sloane, Jan 10 2020

Keywords

Comments

For background references see A330570.

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := (e+1)*(e+2)/2;  s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; With[{t = Array[s, 100]}, Accumulate[Most[t] * Rest[t]]] (* Amiram Eldar, Apr 19 2024 *)

Formula

a(n) = 3 * A331081(n). - Amiram Eldar, Apr 19 2024