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.

A295418 a(n) = n! * Laguerre(n, n*(n-1), -n).

Original entry on oeis.org

1, 2, 32, 1422, 124832, 18246850, 4005713952, 1232956594814, 506672220394496, 267992015325604578, 177340024595660672000, 143531889358151618790862, 139482579412432078779322368, 160267575964062522718064075618, 214924620455826226723051817295872
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 22 2017

Keywords

Crossrefs

Programs

  • Magma
    [Factorial(n)*(&+[Binomial(n^2, n-k)*n^k/Factorial(k): k in [0..n]]): n in [0..25]]; // G. C. Greubel, May 13 2018
  • Mathematica
    Table[n!*LaguerreL[n,n*(n-1),-n],{n,0,15}]
    Join[{1},Table[n!*Sum[Binomial[n^2,n-k]*n^k/k!,{k,0,n}],{n,1,15}]]
  • PARI
    for(n=0,25, print1(n!*sum(k=0,n, binomial(n^2, n-k)*n^k/k!), ", ")) \\ G. C. Greubel, May 13 2018
    
  • PARI
    a(n) = n!*pollaguerre(n, n*(n-1), -n); \\ Michel Marcus, Feb 05 2021
    

Formula

a(n) = n! * Sum_{k=0..n} binomial(n^2,n-k)*n^k/k!.
a(n) ~ exp(1/2) * n^(2*n).
a(n) = n! * [x^n] exp(n*x/(1 - x))/(1 - x)^(n^2-n+1). - Ilya Gutkovskiy, Nov 23 2017