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.

A367667 G.f. A(x) satisfies A(x) = 1 / (1 - x - x^3 * A(x^3)).

This page as a plain text file.
%I A367667 #6 Nov 26 2023 08:37:46
%S A367667 1,1,1,2,3,4,7,11,16,26,41,62,99,156,240,379,596,925,1453,2281,3556,
%T A367667 5575,8742,13658,21394,33524,52432,82100,128597,201233,315058,493377,
%U A367667 772247,1209008,1893055,2963414,4639389,7263831,11371536,17802783,27872601,43635714
%N A367667 G.f. A(x) satisfies A(x) = 1 / (1 - x - x^3 * A(x^3)).
%F A367667 a(0) = 1; a(n) = a(n-1) + Sum_{k=0..floor((n-3)/3)} a(k) * a(n-3-3*k).
%o A367667 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=v[i]+sum(j=0, (i-3)\3, v[j+1]*v[i-2-3*j])); v;
%Y A367667 Cf. A367659, A367666.
%Y A367667 Cf. A218032.
%K A367667 nonn
%O A367667 0,4
%A A367667 _Seiichi Manyama_, Nov 26 2023