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.

A065979 Binomial transform of A002024.

Original entry on oeis.org

1, 3, 7, 16, 36, 79, 170, 362, 767, 1619, 3402, 7112, 14797, 30673, 63427, 130951, 270031, 556111, 1143537, 2347476, 4810758, 9843932, 20118655, 41081297, 83832648, 170987463, 348581862, 710242310, 1446198858
Offset: 1

Views

Author

Robert A. Stump (bee_ess107(AT)yahoo.com), Dec 09 2001

Keywords

References

  • R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. Addison-Wesley, Reading, MA, 1990, p. 97.

Crossrefs

Programs

  • PARI
    rep(n) = floor(1/2 + sqrt(2*n)); /* A002024 */
    a(n) = sum(k = 0, n-1, binomial(n-1, k) * rep(k+1)); \\ Michel Marcus, Aug 31 2013