cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A232228 a(1)=1; thereafter a(n) = 2^(number of bits in binary expansion of a(n-1)) + 1 + a(n-1).

Original entry on oeis.org

1, 4, 13, 30, 63, 128, 385, 898, 1923, 3972, 8069, 16262, 32647, 65416, 130953, 262026, 524171, 1048460, 2097037, 4194190, 8388495, 16777104, 33554321, 67108754, 134217619, 268435348, 536870805, 1073741718, 2147483543, 4294967192, 8589934489, 17179869082, 34359738267, 68719476636
Offset: 1

Views

Author

N. J. A. Sloane, Nov 22 2013

Keywords

Comments

An infinite subsequence of A010061.

Crossrefs

Cf. A010061.

Programs

  • Maple
    f:=proc(n) option remember; if n=1 then 1 else 2^(nops(convert(f(n-1),base,2)))+1+f(n-1); fi; end;
    [seq(f(n),n=1..40)];
  • Mathematica
    NestList[2^IntegerLength[#,2]+1+#&,1,40] (* Harvey P. Dale, May 05 2020 *)