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”).

A318123
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} lcm(a(k), a(n-k-2)).
1
1, 1, 1, 2, 3, 6, 11, 22, 42, 90, 165, 364, 710, 1586, 2885, 6288, 12546, 28686, 55406, 130284, 261016, 555716, 1149559, 2552096, 5429610, 11510594, 23650462, 54063580, 109053128, 262968892, 501771275, 1192348336, 2635608642, 5766609158, 11935917602, 28867050172, 58702673480
OFFSET
0,4
LINKS
MATHEMATICA
a[0] = a[1] = 1; a[n_] := a[n] = Sum[LCM[a[k], a[n - k - 2]], {k, 0, n - 2}]; Table[a[n], {n, 0, 36}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 18 2018
STATUS
approved