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.

A255420 Ludic recurrence: Iterates of f(n) = A003309(n+1) starting from n=1.

Original entry on oeis.org

1, 2, 3, 5, 11, 37, 181, 1361, 13927, 183871, 3005533, 59045717
Offset: 0

Views

Author

Antti Karttunen, Feb 23 2015

Keywords

Crossrefs

Programs

  • Haskell
    a255420 n = a255420_list !! n
    a255420_list = iterate (a003309 . (+ 1)) 1
    -- Reinhard Zumkeller, Feb 25 2015

Formula

a(0) = 1; for n >= 1: a(n) = A003309(1+a(n-1)).
Other identities. For all n >= 0:
a(n) = A237126(A000225(n+1)).
a(n) = A255421(A007097(n)).