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.

A254403 a(n) = floor(b(n)), where b(n) = b(n-1)^(3/2), b(1) = 4.

Original entry on oeis.org

4, 8, 22, 107, 1116, 37315, 7208411, 19353494040, 2692396855225368, 139703926313910081688758, 52217120356716278672533411477879775, 11932168478692303941858114447713697732545410824169841
Offset: 1

Views

Author

Vaclav Kotesovec, Jan 30 2015

Keywords

Crossrefs

Cf. A254404.

Programs

  • Mathematica
    Floor[RecurrenceTable[{a[1]==4,a[n]==a[n-1]^(3/2)},a,{n,1,15}]]
    Table[Floor[4^((3/2)^(n-1))], {n, 1, 15}]

Formula

a(n) = floor(4^((3/2)^(n-1))).