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.

A114749 a(n) = a(n-1) + 4*a(n-2) + 6*a(n-3) + 4*a(n-4) + a(n-5).

This page as a plain text file.
%I A114749 #33 Sep 05 2025 01:55:56
%S A114749 0,1,1,2,3,21,50,161,501,1532,4723,14551,44800,137971,424901,1308512,
%T A114749 4029693,12409831,38217250,117693681,362448951,1116196192,3437432913,
%U A114749 10585903361,32600301650,100395746291,309178300901,952144142322,2932218933633,9030048595141
%N A114749 a(n) = a(n-1) + 4*a(n-2) + 6*a(n-3) + 4*a(n-4) + a(n-5).
%H A114749 Harvey P. Dale, <a href="/A114749/b114749.txt">Table of n, a(n) for n = 0..1000</a>
%H A114749 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,4,6,4,1).
%F A114749 G.f.: x*(9*x^3 + 3*x^2 - 1)/((x^2 + x + 1)*(x^3 + 3*x^2 + 2*x - 1)). - Maksym Voznyy (voznyy(AT)mail.ru), Aug 12 2009
%t A114749 LinearRecurrence[{1,4,6,4,1},{0,1,1,2,3},30] (* _Harvey P. Dale_, Oct 13 2011 *)
%o A114749 (PARI) my(x='x+O('x^50)); concat([0], Vec(x*(9*x^3+3*x^2-1)/((x^2+x+1)*(x^3+ 3*x^2+2*x-1)))) \\ _G. C. Greubel_, Nov 03 2018
%o A114749 (Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!(x*(9*x^3+3*x^2-1)/((x^2+x+1)*(x^3+3*x^2+2*x-1)))); // _G. C. Greubel_, Nov 03 2018
%Y A114749 Cf. A107479, A107480, A109538, A109543, A109544, A125950, A130844, A143335, A147851.
%K A114749 nonn,easy,changed
%O A114749 0,4
%A A114749 _Roger L. Bagula_, Feb 18 2006