A137411 Weak Goodstein sequence starting at 11.
11, 30, 67, 127, 217, 343, 511, 636, 775, 928, 1095, 1276, 1471, 1680, 1903, 2139, 2389, 2653, 2931, 3223, 3529, 3849, 4183, 4531, 4893, 5269, 5659, 6063, 6481, 6913, 7359, 7818, 8291, 8778, 9279, 9794, 10323, 10866, 11423, 11994, 12579, 13178
Offset: 0
Examples
a(0) = 11 = 2^3 + 2^1 + 2^0 a(1) = 3^3 + 3^1 + 3^0 - 1 = 30 a(2) = 4^3 + 4^1 - 1 = 4^3 + 3*4^0 = 67
References
- K. Hrbacek and T. Jech, Introduction to Set Theory, Taylor & Francis Group, 1999, pp. 125-127.
Links
- Zhuorui He, Table of n, a(n) for n = 0..10000 (Terms 0..998 from Harvey P. Dale)
Crossrefs
Programs
-
Mathematica
nxt[{n_,a_}]:={n+1,FromDigits[IntegerDigits[a,n+1],n+2]-1}; Transpose[ NestList[ nxt,{1,11},50]][[2]] (* Harvey P. Dale, Feb 09 2015 *)
-
PARI
a(n, m=11) = { my(wn = m); for (k=2, n+1, wn = fromdigits(digits(wn, k), k+1) - 1); wn; } \\ Zhuorui He, Aug 08 2025
Formula
To obtain a(n + 1), write a(n) in base n + 2, increase the base to n + 3 and subtract 1.
Extensions
Offset changed to 0 by Zhuorui He, Aug 07 2025
Comments