A296426 Decimal expansion of ratio-sum for A296251; see Comments.
1, 0, 6, 8, 5, 6, 6, 9, 6, 2, 9, 9, 0, 1, 8, 9, 3, 3, 2, 0, 9, 5, 8, 6, 0, 9, 1, 7, 6, 7, 0, 0, 1, 7, 5, 3, 6, 8, 3, 7, 8, 3, 3, 5, 1, 9, 1, 0, 4, 0, 6, 1, 6, 8, 2, 7, 1, 5, 1, 6, 6, 0, 8, 6, 6, 9, 1, 9, 4, 6, 1, 7, 6, 1, 2, 5, 1, 0, 2, 2, 7, 6, 2, 8, 3, 6
Offset: 2
Examples
10.6856696299018933209586091...
Programs
-
Mathematica
a[0] = 1; a[1] = 2; b[0] = 3; b[1] = 4; a[n_] := a[n] = a[n - 1] + a[n - 2] + b[n - 1]^2; j = 1; While[j < 13, k = a[j] - j - 1; While[k < a[j + 1] - j + 1, b[k] = j + k + 2; k++]; j++]; Table[a[n], {n, 0, k}]; (* A296246 *) g = GoldenRatio; s = N[Sum[- g + a[n]/a[n - 1], {n, 1, 1000}], 200] Take[RealDigits[s, 10][[1]], 100] (* A296426 *)
Comments