A167385 a(n)= sum_{i=7..n+6} A000931(i).
1, 3, 5, 8, 12, 17, 24, 33, 45, 61, 82, 110, 147, 196, 261, 347, 461, 612, 812, 1077, 1428, 1893, 2509, 3325, 4406, 5838, 7735, 10248, 13577, 17987, 23829, 31568, 41820, 55401, 73392, 97225, 128797, 170621, 226026, 299422, 396651, 525452, 696077, 922107, 1221533
Offset: 0
Crossrefs
Cf. A018917.
Programs
-
Mathematica
Clear[f, g, n] f[0] = 0; f[1] = 1; f[2] = 1; f[n_] := f[n] = f[n - 2] + f[n - 3]; g[n_] := Sum[f[i + 3], {i, 0, n}] Table[g[n], {n, 0, 30}]
Formula
Extensions
Notation normalized, definition corrected, g.f. added - The Assoc. Editors of the OEIS, Nov 05 2009