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.
%I A047990 #12 Sep 26 2021 03:19:04 %S A047990 1,2,4,14,54,292,1696,12500,97300,909800,8888400,100778200,1185163000, %T A047990 15798002000,217275712000,3329482106000,52433793018000, %U A047990 908110694260000,16113910669480000,311249886303980000,6144485548655740000 %N A047990 a(n+1) = a(n) + (n^2 + 1)*a(n-1). %D A047990 Studied by M. Bhargava (bhargava(AT)math.Princeton.EDU) and H. S. Wilf. %H A047990 T. D. Noe, <a href="/A047990/b047990.txt">Table of n, a(n) for n=0..100</a> %F A047990 a(n) ~ c * n!, where c = sqrt(Pi) * (1/(Gamma(1/2 + i/2) * Gamma(1 - i/2)) + 1/(Gamma(1/2 - i/2) * Gamma(1 + i/2)))/2 + hypergeom([1 - i, 1 - i], [2], -1) / 2^i = 2.6068398732089369139523868268495087173767147472699250704975984714... and i is the imaginary unit. - _Vaclav Kotesovec_, Sep 26 2021 %t A047990 RecurrenceTable[{a[0]==1,a[1]==2,a[n]==a[n-1]+((n-1)^2+1)a[n-2]},a,{n,20}] (* _Harvey P. Dale_, May 07 2013 *) %Y A047990 Cf. A047991. %K A047990 nonn,easy,nice %O A047990 0,2 %A A047990 _N. J. A. Sloane_