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.

A332694 a(n) = (-1)^n * n! * Laguerre(n, 5*n).

Original entry on oeis.org

1, 4, 62, 1614, 58904, 2764880, 158631120, 10755909010, 841471425920, 74605812325020, 7392555309228800, 809594650092540950, 97103822900059929600, 12659189667284189060200, 1782335176686080469555200, 269524635118213823349788250, 43567606796796836119605248000
Offset: 0

Views

Author

Vaclav Kotesovec, Feb 20 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(-1)^n * n! * LaguerreL[n, 5*n], {n, 0, 20}]
    Flatten[{1, Table[n!*Sum[Binomial[n, k] * (-1)^(n-k) * 5^k * n^k / k!, {k, 0, n}], {n, 1, 20}]}]
    Table[(-1)^n * n! * Hypergeometric1F1[-n, 1, 5*n], {n, 0, 20}]
  • PARI
    a(n) = (-1)^n*n!*pollaguerre(n, 0, 5*n); \\ Michel Marcus, Feb 05 2021

Formula

a(n) ~ exp((3-sqrt(5))*n/2) * ((sqrt(5) + 1)/2)^(2*n+1) * n^n / 5^(1/4). - Vaclav Kotesovec, Feb 20 2020, simplified May 09 2021