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.

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

Original entry on oeis.org

1, 2, 2, 16, 30, 492, 1052, 29632, 64582, 2842220, 6118860, 393285408, 831896748, 74023348728, 154261364376, 18199799667456, 37519687909062, 5669520927708492, 11601413537799692, 2184087758215537120, 4446590269784808388, 1020018234043912680104
Offset: 0

Views

Author

Seiichi Manyama, Apr 26 2018

Keywords

Crossrefs

Programs

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