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.

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

Original entry on oeis.org

1, 2, 2, 32, 62, 1764, 3916, 173376, 393446, 25166076, 56406348, 4958003840, 10882283500, 1264942740680, 2721161685880, 405344510959872, 857860989902854, 159511701001085164, 333452808033317004, 75711389658286217024, 156849644184430434436
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+3)!*x^k)/sum(k=0, N, (k+3)!*(-x)^k))^(1/4))