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 A084203 #8 Jul 26 2018 09:10:55 %S A084203 1,1,0,0,1,-1,2,-2,2,0,-4,12,-24,38,-46,33,29,-176,443,-827,1222, %T A084203 -1310,433,2488,-8814,19528,-33599,44928,-37805,-17916,168049,-463252, %U A084203 921694,-1446018,1679053,-808620,-2598482,10515127,-24690122,44515322,-62719429,58496244,10670109,-213311788,632128236 %N A084203 G.f. A(x) defined by: A(x)^3 consists entirely of integer coefficients between 1 and 3 (A083953); A(x) is the unique power series solution with A(0)=1. %C A084203 Does limit_{n ->infinity} a(n)/a(n+1) exist? %H A084203 N. Heninger, E. M. Rains and N. J. A. Sloane, <a href="http://arXiv.org/abs/math.NT/0509316">On the Integrality of n-th Roots of Generating Functions</a>, J. Combinatorial Theory, Series A, 113 (2006), 1732-1745. %t A084203 kmax = 45; %t A084203 A[x_] = Sum[a[k] x^k, {k, 0, kmax}]; %t A084203 coes = CoefficientList[A[x]^3 + O[x]^kmax , x]; %t A084203 r = {}; %t A084203 Do[r = Flatten @ Append[r, Reduce[1 <= coes[[k]] <= 3, a[k-1], Integers] // ToRules]; coes = coes /. r, {k, 1, kmax}]; %t A084203 Array[a, kmax, 0] /. r (* _Jean-François Alcover_, Jul 26 2018 *) %Y A084203 Cf. A083953, A084202, A084204-A084212. %K A084203 sign %O A084203 0,7 %A A084203 _Paul D. Hanna_, May 19 2003