A296495 Decimal expansion of ratio-sum for A294414; see Comments.
4, 5, 8, 5, 1, 9, 7, 1, 7, 4, 1, 8, 4, 5, 6, 5, 4, 0, 1, 9, 8, 8, 8, 6, 9, 0, 5, 7, 8, 1, 7, 6, 5, 0, 7, 4, 6, 9, 0, 1, 6, 6, 0, 5, 6, 9, 3, 5, 9, 2, 0, 5, 5, 8, 2, 0, 4, 1, 4, 1, 6, 1, 7, 4, 4, 1, 3, 5, 2, 1, 8, 8, 5, 7, 5, 0, 6, 5, 1, 7, 9, 0, 7, 3, 7, 5
Offset: 1
Examples
4.585197174184565401988869057817650746901...
Programs
-
Mathematica
a[0] = 1; a[1] = 3; b[0] = 2; b[1] = 4; a[n_] := a[n] = a[n - 1] + a[n - 2] + b[n - 1] + b[n - 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}]; (* A294414 *) g = GoldenRatio; s = N[Sum[- g + a[n]/a[n - 1], {n, 1, 1000}], 200] Take[RealDigits[s, 10][[1]], 100] (* A296495 *)
Comments