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.

A295773 a(n) = Sum_{k=0..n} binomial(k^2, k).

This page as a plain text file.
%I A295773 #15 Jan 10 2023 08:37:01
%S A295773 1,2,8,92,1912,55042,2002834,87903418,4514068786,265401903136,
%T A295773 17575711359576,1294325676386112,104913619501093500,
%U A295773 9281271920245432932,889811788303594625412,91895379599481072720852,10170646981621794947354052,1200909691326112843842751962
%N A295773 a(n) = Sum_{k=0..n} binomial(k^2, k).
%H A295773 Seiichi Manyama, <a href="/A295773/b295773.txt">Table of n, a(n) for n = 0..338</a>
%F A295773 a(n) ~ exp(n - 1/2) * n^(n - 1/2) / sqrt(2*Pi).
%t A295773 Table[Sum[Binomial[k^2, k], {k, 0, n}], {n, 0, 20}]
%o A295773 (PARI) a(n) = sum(k=0, n, binomial(k^2, k)); \\ _Michel Marcus_, Jan 10 2019
%o A295773 (Magma) [&+[Binomial(k^2, k): k in [0..n]]: n in [0..20]]; // _Vincenzo Librandi_, Jan 10 2019
%Y A295773 Cf. A014062, A226391, A295772, A359665.
%K A295773 nonn
%O A295773 0,2
%A A295773 _Vaclav Kotesovec_, Nov 27 2017