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.

A211546 Number of ordered triples (w,x,y) with all terms in {1,...,n} and w=3x-3y.

This page as a plain text file.
%I A211546 #12 Dec 03 2017 13:56:02
%S A211546 0,0,0,2,3,4,9,11,13,21,24,27,38,42,46,60,65,70,87,93,99,119,126,133,
%T A211546 156,164,172,198,207,216,245,255,265,297,308,319,354,366,378,416,429,
%U A211546 442,483,497,511,555,570,585,632,648,664,714,731,748,801,819
%N A211546 Number of ordered triples (w,x,y) with all terms in {1,...,n} and w=3x-3y.
%C A211546 For a guide to related sequences, see A211422.
%H A211546 Colin Barker, <a href="/A211546/b211546.txt">Table of n, a(n) for n = 0..1000</a>
%H A211546 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,2,-2,0,-1,1).
%F A211546 a(n) = a(n-1) + 2*a(n-3) - 2*a(n-4) - a(n-6) + a(n-7).
%F A211546 G.f.: x^3*(2 + x + x^2 + x^3) / ((1 - x)^3*(1 + x + x^2)^2). - _Colin Barker_, Dec 03 2017
%t A211546 t[n_] := t[n] = Flatten[Table[w - 3 x + 3 y, {w, 1, n}, {x, 1, n}, {y, 1, n}]]
%t A211546 c[n_] := Count[t[n], 0]
%t A211546 t = Table[c[n], {n, 0, 70}]  (* A211546 *)
%t A211546 FindLinearRecurrence[t]
%t A211546 LinearRecurrence[{1,0,2,-2,0,-1,1},{0,0,0,2,3,4,9},56] (* _Ray Chandler_, Aug 02 2015 *)
%o A211546 (PARI) concat(vector(3), Vec(x^3*(2 + x + x^2 + x^3) / ((1 - x)^3*(1 + x + x^2)^2) + O(x^40))) \\ _Colin Barker_, Dec 03 2017
%Y A211546 Cf. A211422.
%K A211546 nonn,easy
%O A211546 0,4
%A A211546 _Clark Kimberling_, Apr 15 2012