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.

A378327 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(n*k,k) / ((n-1)*k + 1).

This page as a plain text file.
%I A378327 #9 Nov 23 2024 12:46:50
%S A378327 1,2,5,25,257,4361,104425,3241316,123865313,5628753361,296671566941,
%T A378327 17798975341467,1197924420178381,89394126594968755,
%U A378327 7326377073291002147,654215578855903951141,63225054646397348577601,6575059243843086616460321,732138834180570978286488133
%N A378327 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(n*k,k) / ((n-1)*k + 1).
%H A378327 Vaclav Kotesovec, <a href="/A378327/b378327.txt">Table of n, a(n) for n = 0..338</a>
%F A378327 a(n) ~ exp(n + exp(-1) - 1/2) * n^(n - 5/2) / sqrt(2*Pi).
%t A378327 Table[Sum[Binomial[n, k] Binomial[n*k, k]/((n-1)*k + 1), {k, 0, n}], {n, 0, 20}]
%Y A378327 Cf. A007317, A007556, A188687, A346646, A346647, A346648, A346649, A346650.
%Y A378327 Cf. A378326.
%K A378327 nonn
%O A378327 0,2
%A A378327 _Vaclav Kotesovec_, Nov 23 2024