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 A373720 #9 Jun 15 2024 09:23:19 %S A373720 1,1,1,19,73,541,5761,35911,515089,5399353,61253281,991270171, %T A373720 11862564121,203249068309,3295367161633,52595413358671, %U A373720 1060046073787681,18422593177204081,383150483373313729,8042585703164409763,165930214242407069161,3968988522451484425741 %N A373720 Expansion of e.g.f. exp(x * (1 + x^2)^3). %F A373720 a(n) = n! * Sum_{k=0..floor(3*n/7)} binomial(3*n-6*k,k)/(n-2*k)!. %F A373720 a(n) == 1 (mod 18). %F A373720 a(n) = a(n-1) + 9*(n-1)*(n-2)*a(n-3) + 15*(n-1)*(n-2)*(n-3)*(n-4)*a(n-5) + 7*(n-1)*(n-2)*(n-3)*(n-4)*(n-5)*(n-6)*a(n-7). %o A373720 (PARI) a(n) = n!*sum(k=0, 3*n\7, binomial(3*n-6*k, k)/(n-2*k)!); %Y A373720 Cf. A361279, A373718. %K A373720 nonn %O A373720 0,4 %A A373720 _Seiichi Manyama_, Jun 15 2024