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

A111618
First lower diagonal of A109626.
5
1, 3, 2, 5, 3, 7, 4, 9, 10, 11, 6, 13, 14, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 26, 27, 14, 29, 30, 31, 16, 33, 17, 35, 18, 37, 38, 39, 20, 41, 42, 43, 22, 45, 46, 47, 48, 49, 50, 51, 52, 53, 27, 55, 56, 57, 29, 59, 30, 61, 31, 63, 32, 65, 66, 67, 34, 69, 70, 71, 72, 73, 74
OFFSET
2,2
COMMENTS
The odd-indexed bisection is a(2n+1)=2n+1.
The even-indexed bisection: A111619.
MATHEMATICA
f[n_] := f[n] = Block[{a}, a[0] = 1; a[l_] := a[l] = Block[{k = 1, s = Sum[ a[i]*x^i, {i, 0, l - 1}]}, While[ IntegerQ[ Last[ CoefficientList[ Series[(s + k*x^l)^(1/n), {x, 0, l}], x]]] != True, k++ ]; k]; Table[a[j], {j, 0, 80}]]; g[n_, m_] := f[n][[m]]; Table[ g[n, n - 1], {n, 2, 74}]
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved