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.

A303569 a(n) = [x^n] ((Sum_{k=0..n} (k+7)!*x^k)/(Sum_{k=0..n} (k+7)!*(-x)^k))^(1/8).

Original entry on oeis.org

1, 2, 2, 80, 158, 9428, 21740, 1814144, 4326566, 480716188, 1138919436, 162673628256, 377710551084, 67537379669352, 153236971128120, 33578612305618176, 74565718435602822, 19669491236331371820, 42886189370197775372, 13410838610779209885664
Offset: 0

Views

Author

Seiichi Manyama, Apr 26 2018

Keywords

Crossrefs

Programs

  • PARI
    N=20; x='x+O('x^N); Vec((sum(k=0, N, (k+7)!*x^k)/sum(k=0, N, (k+7)!*(-x)^k))^(1/8))