login

Revision History for A296491

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Decimal expansion of ratio-sum for A294170; see Comments.
(history; published version)
#9 by N. J. A. Sloane at Fri Feb 16 13:30:17 EST 2018
STATUS

proposed

approved

#8 by Jon E. Schoenfield at Sat Feb 10 16:56:56 EST 2018
STATUS

editing

proposed

#7 by Jon E. Schoenfield at Sat Feb 10 16:56:53 EST 2018
COMMENTS

Suppose that A = (a(n)), for n >= 0, is a sequence, and g is a real number such that a(n)/a(n-1) -> g. The ratio-sum for A is |a(1)/a(0) - g| + |a(2)/a(1) - g| + . . . , , assuming that this series converges. For A = A294170, we have g = (1 + sqrt(5))/2, the golden ratio (A001622). See the guide at A296469 for related sequences.

STATUS

proposed

editing

#6 by Clark Kimberling at Sat Feb 10 15:06:58 EST 2018
STATUS

editing

proposed

#5 by Clark Kimberling at Sat Feb 10 14:46:13 EST 2018
NAME

Decimal expansion of ratio-sum for A296776A294170; see Comments.

COMMENTS

Suppose that A = (a(n)), for n >= 0, is a sequence, and g is a real number such that a(n)/a(n-1) -> g. The ratio-sum for A is |a(1)/a(0) - g| + |a(2)/a(1) - g| + . . . , assuming that this series converges. For A = A296776, A294170, we have g = (1 + sqrt(5))/2, the golden ratio (A001622). See the guide at A296469 for related sequences.

MATHEMATICA

While[k < a[j + 1] - j + 1, b[k] = j + k + 2; k++]; j++];

u = Table[a[n], {n, 0, k}]; (* A296776 A294170 *)

CROSSREFS
STATUS

approved

editing

#4 by Susanna Cuyler at Wed Dec 20 23:33:21 EST 2017
STATUS

proposed

approved

#3 by Clark Kimberling at Wed Dec 20 18:02:38 EST 2017
STATUS

editing

proposed

#2 by Clark Kimberling at Wed Dec 20 17:40:08 EST 2017
NAME

allocated Decimal expansion of ratio-sum for Clark KimberlingA296776; see Comments.

DATA

6, 3, 5, 8, 7, 1, 3, 0, 2, 6, 9, 8, 4, 2, 9, 9, 3, 5, 4, 5, 4, 1, 4, 7, 7, 9, 6, 8, 8, 9, 0, 6, 0, 5, 5, 0, 4, 3, 0, 2, 3, 3, 0, 8, 6, 8, 8, 9, 4, 5, 7, 0, 7, 3, 2, 5, 1, 6, 1, 3, 3, 3, 0, 1, 0, 1, 5, 5, 4, 3, 0, 8, 3, 2, 4, 6, 4, 3, 7, 3, 6, 8, 1, 7, 5, 9

OFFSET

1,1

COMMENTS

Suppose that A = (a(n)), for n >= 0, is a sequence, and g is a real number such that a(n)/a(n-1) -> g. The ratio-sum for A is |a(1)/a(0) - g| + |a(2)/a(1) - g| + . . . , assuming that this series converges. For A = A296776, we have g = (1 + sqrt(5))/2, the golden ratio (A001622). See the guide at A296469 for related sequences.

EXAMPLE

6.358713026984299354541477968890605504302...

MATHEMATICA

a[0] = 1; a[1] = 2; b[0] = 3; b[1] = 4; b[2] = 5;

a[n_] := a[n] = a[n - 1] + a[n - 2] + b[n] + 2 n;

j = 1; While[j < 16, k = a[j] - j - 1;

While[k < a[j + 1] - j + 1, b[k] = j + k + 2; k++]; j++];

u = Table[a[n], {n, 0, k}]; (* A296776 *)

g = GoldenRatio; s = N[Sum[- g + a[n]/a[n - 1], {n, 1, 1000}], 200]

Take[RealDigits[s, 10][[1]], 100] (* A296491 *)

CROSSREFS
KEYWORD

allocated

nonn,easy,cons

AUTHOR

Clark Kimberling, Dec 20 2017

STATUS

approved

editing

#1 by Clark Kimberling at Wed Dec 13 13:53:37 EST 2017
NAME

allocated for Clark Kimberling

KEYWORD

allocated

STATUS

approved