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.

A017072 a(n) = (8*n)^8.

Original entry on oeis.org

0, 16777216, 4294967296, 110075314176, 1099511627776, 6553600000000, 28179280429056, 96717311574016, 281474976710656, 722204136308736, 1677721600000000, 3596345248055296, 7213895789838336, 13685690504052736
Offset: 0

Views

Author

Keywords

Comments

a(n) = A155955(n,8) for n > 7. - Reinhard Zumkeller, Jan 31 2009

Programs

  • Magma
    [(8*n)^8: n in [0..35]]; // Vincenzo Librandi, Jul 11 2011
  • Mathematica
    (8*Range[0,20])^8 (* or *) LinearRecurrence[{9,-36,84,-126,126,-84,36,-9,1},{0,16777216,4294967296,110075314176,1099511627776,6553600000000,28179280429056,96717311574016,281474976710656},20] (* Harvey P. Dale, May 25 2019 *)