login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A326996 Main diagonal of A260876. 3
1, 1, 4, 365, 3086331, 5612271711927, 3829797188212731601783, 1478967550753025951356611840021161, 452501475882033837823819972299248189399008553836, 146630849220097180917463638217405949960396188742877031073909770851 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A260876(n,n).
a(n) = (n^2)! * [x^(n^2)] exp(Sum_{k>=1} x^(n*k) / (n*k)!). - Ilya Gutkovskiy, Feb 09 2020
MAPLE
b:= proc(n, k) option remember; `if`(n=0, 1, add(
binomial(k*n-1, k*j-1)*b(n-j, k), j=1..n))
end:
a:= n-> b(n$2):
seq(a(n), n=0..10); # Alois P. Heinz, Aug 14 2019
MATHEMATICA
b[n_, k_] := b[n, k] = If[n == 0, 1, Sum[Binomial[k n - 1, k j - 1] b[n - j, k], {j, 1, n}]];
a[n_] := b[n, n];
a /@ Range[0, 10] (* Jean-François Alcover, Nov 07 2020, after Maple *)
CROSSREFS
Sequence in context: A177114 A109760 A051181 * A154682 A292195 A154569
KEYWORD
nonn
AUTHOR
Peter Luschny, Aug 13 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 9 16:40 EDT 2024. Contains 375765 sequences. (Running on oeis4.)