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.

A363257 a(n) = floor( ((a(n-1) + 1) / 2)^2 ) + 1 for n >= 1, with a(0) = 0.

Original entry on oeis.org

0, 1, 2, 3, 5, 10, 31, 257, 16642, 69247363, 1198799355237125, 359279973529237254190922184970, 32270524844792355518177347536627638351478874995525184567711
Offset: 0

Views

Author

Harry Richman, May 23 2023

Keywords

Comments

Iterated application of A033638, with a shift.

Crossrefs

Programs

  • PARI
    a(n) = if(n < 1, 0, floor( ((a(n-1) + 1) / 2)^2 ) + 1) \\ Andrew Howroyd, Jan 01 2024

Formula

a(n) = A033638(a(n-1)+1) for n > 0.
log a(n) ~ C * 2^n for some constant C.