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.

A367694 G.f. A(x) satisfies A(x) = 1 / ((1 + x) * (1 - x * A(x^4))).

This page as a plain text file.
%I A367694 #10 Nov 27 2023 06:25:28
%S A367694 1,0,1,0,1,0,1,0,1,1,2,2,3,3,4,4,5,6,8,10,13,16,20,24,29,35,43,53,66,
%T A367694 82,102,126,155,190,233,286,352,435,537,664,819,1011,1244,1532,1884,
%U A367694 2322,2860,3528,4349,5366,6614,8154,10044,12377,15247,18791,23156,28546
%N A367694 G.f. A(x) satisfies A(x) = 1 / ((1 + x) * (1 - x * A(x^4))).
%F A367694 a(n) = (-1)^n + Sum_{k=0..floor((n-1)/4)} a(k) * a(n-1-4*k).
%o A367694 (PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=(-1)^i+sum(j=0, (i-1)\4, v[j+1]*v[i-4*j])); v;
%Y A367694 Cf. A005043, A351973, A367693.
%Y A367694 Cf. A367660, A367692.
%K A367694 nonn
%O A367694 0,11
%A A367694 _Seiichi Manyama_, Nov 27 2023