login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A331080
a(n) = Sum_{i=1..n} d_3(i)*d_3(i+1), where d_3(n) = A007425(n).
3
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,1
COMMENTS
For background references see A330570.
LINKS
FORMULA
a(n) = 3 * A331081(n). - Amiram Eldar, Apr 19 2024
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 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 10 2020
STATUS
approved