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.

A366558 G.f. A(x) satisfies A(x) = 1 + x + x^4*A(x)^4.

This page as a plain text file.
%I A366558 #12 Oct 14 2023 14:00:15
%S A366558 1,1,0,0,1,4,6,4,5,28,84,140,162,304,1018,2644,4760,7364,15540,42680,
%T A366558 102059,195904,356542,782880,1950844,4467288,9011156,17960676,
%U A366558 39984254,94642292,212395260,444063984,931300500,2082762572,4796413292,10681800072,22892593021
%N A366558 G.f. A(x) satisfies A(x) = 1 + x + x^4*A(x)^4.
%F A366558 a(n) = Sum_{k=0..floor(n/4)} binomial(3*k+1,n-4*k) * binomial(4*k,k)/(3*k+1).
%F A366558 a(n) = A366595(n) + A366595(n-1).
%o A366558 (PARI) a(n) = sum(k=0, n\4, binomial(3*k+1, n-4*k)*binomial(4*k, k)/(3*k+1));
%Y A366558 Cf. A137954, A366267, A366557.
%Y A366558 Cf. A366554, A366556.
%Y A366558 Cf. A366595.
%K A366558 nonn
%O A366558 0,6
%A A366558 _Seiichi Manyama_, Oct 13 2023