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.

A005348 Number of ways to add n ordinals.

Original entry on oeis.org

1, 2, 5, 13, 33, 81, 193, 449, 1089, 2673, 6561, 15633, 37249, 88209, 216513, 531441, 1266273, 3017169, 7189057, 17537553, 43046721, 102568113, 244390689, 582313617, 1420541793, 3486784401, 8308017153, 19795645809, 47167402977, 115063885233, 282429536481
Offset: 1

Views

Author

N. J. A. Sloane, R. K. Guy, Bill Sands and Tommy Kucera

Keywords

References

  • John H. Conway and Richard K. Guy, The Book of Numbers, New York: Springer-Verlag, 1996. See pp. 270-271.
  • W. Sierpiński, Cardinal and Ordinal Numbers, 2nd ed. p 275.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • Magma
    I:=[1,2,5,13,33,81,193,449,1089,2673,6561,15633,37249, 88209,216513,531441,1266273,3017169,7189057,17537553, 43046721]; [n le 21 select I[n] else 81*Self(n-5): n in [1..50]]; // Vincenzo Librandi, Dec 17 2015
  • Mathematica
    Join[{1, 2, 5, 13, 33, 81, 193, 449, 1089, 2673, 6561, 15633, 37249, 88209}, LinearRecurrence[ {0, 0, 0, 0, 81}, {216513, 531441, 1266273, 3017169, 7189057}, 20]] (* Harvey P. Dale, Dec 15 2014 *)

Formula

a(n) = 81*a(n-5) for n >= 21.