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.

A212335 Expansion of 1/(1-22*x+22*x^2-x^3).

This page as a plain text file.
%I A212335 #24 Mar 29 2024 05:43:35
%S A212335 1,22,462,9681,202840,4249960,89046321,1865722782,39091132102,
%T A212335 819048051361,17160917946480,359560228824720,7533603887372641,
%U A212335 157846121406000742,3307234945638642942,69294087737005501041,1451868607531476878920
%N A212335 Expansion of 1/(1-22*x+22*x^2-x^3).
%C A212335 Partial sums of A092499 (after 0).
%H A212335 Bruno Berselli, <a href="/A212335/b212335.txt">Table of n, a(n) for n = 0..200</a>
%H A212335 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (22,-22,1).
%F A212335 G.f.: 1/((1-x)*(1-21*x+x^2)).
%F A212335 a(n) = (((230-11*sqrt(437))*(21-sqrt(437))^n+(230+11*sqrt(437))*(21+sqrt(437))^n)/2^n-23)/437.
%F A212335 a(n) = a(-n-3) = 23*a(n-1)-23*a(n-2)+a(n-3).
%F A212335 a(n)*a(n+2) = a(n+1)*(a(n+1)-1).
%p A212335 a:= n-> (<<0|1|0>, <0|0|1>, <1|-22|22>>^n. <<1, 22, 462>>)[1, 1]:
%p A212335 seq(a(n), n=0..20);  # _Alois P. Heinz_, Jun 15 2012
%t A212335 CoefficientList[Series[1/(1 - 22 x + 22 x^2 - x^3), {x, 0, 16}], x]
%t A212335 LinearRecurrence[{22,-22,1},{1,22,462},20] (* _Harvey P. Dale_, Nov 04 2017 *)
%o A212335 (PARI) Vec(1/(1-22*x+22*x^2-x^3)+O(x^17))
%o A212335 (Maxima) makelist(coeff(taylor(1/(1-22*x+22*x^2-x^3), x, 0, n), x, n), n, 0, 16);
%o A212335 (Magma) m:=17; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-22*x+22*x^2-x^3)));
%Y A212335 Cf. A212336 for more sequences with g.f. of the type 1/(1-k*x+k*x^2-x^3).
%K A212335 nonn,easy
%O A212335 0,2
%A A212335 _Bruno Berselli_, Jun 12 2012