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.

A066744 a(n) = either 4a(n-1)+1 or 4a(n-1)+3 depending on corresponding term of A005614, +3 for 0, +1 for 1.

Original entry on oeis.org

1, 7, 29, 117, 471, 1885, 7543, 30173, 120693, 482775, 1931101, 7724405, 30897623, 123590493, 494361975, 1977447901, 7909791605, 31639166423, 126556665693, 506226662775, 2024906651101, 8099626604405, 32398506417623
Offset: 1

Views

Author

John McNamara, Jan 16 2002

Keywords

Comments

Ratio to terms of A028894 tends to 1.23459972586...

Crossrefs

Programs

  • Mathematica
    f[1]={0}; f[2]={1}; f[n_] := f[n]=Join[f[n-1], f[n-2]]; a[1]=1; a[n_] := a[n]=4a[n-1]+3-2f[9][[n]]; a/@Range[1, 30]