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.

A321003 a(n) = 2^n*(4*3^n-1).

This page as a plain text file.
%I A321003 #20 Nov 02 2018 12:08:48
%S A321003 3,22,140,856,5168,31072,186560,1119616,6718208,40310272,241863680,
%T A321003 1451186176,8707125248,52242767872,313456640000,1880739905536,
%U A321003 11284439564288,67706637647872,406239826411520,2437438959517696,14624633759203328,87747802559414272
%N A321003 a(n) = 2^n*(4*3^n-1).
%C A321003 Conjectured to be the sum of A175046(i) for 1 <= i < 2^(n+1).
%H A321003 Colin Barker, <a href="/A321003/b321003.txt">Table of n, a(n) for n = 0..1000</a>
%H A321003 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (8,-12).
%F A321003 From _Colin Barker_, Nov 02 2018: (Start)
%F A321003 G.f.: (3 - 2*x) / ((1 - 2*x)*(1 - 6*x)).
%F A321003 a(n) = 8*a(n-1) - 12*a(n-2) for n>1.
%F A321003 (End)
%F A321003 E.g.f.: -exp(2*x)+4*exp(6*x). - _Stefano Spezia_, Nov 02 2018
%p A321003 a := n -> 2^n*(4*3^n-1):
%p A321003 seq(a(n), n = 0 .. 25); # _Stefano Spezia_, Nov 02 2018
%t A321003 a[n_]:=2^n*(4*3^n-1); Array[a, 25, 0] (* or *)
%t A321003 CoefficientList[Series[-E^(2 x) + 4 E^(6 x), {x, 0, 25}], x]*Table[k!, {k, 0, 25}] (* _Stefano Spezia_, Nov 02 2018 *)
%o A321003 (PARI) Vec((3 - 2*x) / ((1 - 2*x)*(1 - 6*x)) + O(x^25)) \\ _Colin Barker_, Nov 02 2018
%o A321003 (PARI) a(n) = 2^n*(4*3^n-1); \\ _Michel Marcus_, Nov 02 2018
%Y A321003 Cf. A175046, A171498, A321002.
%K A321003 nonn,easy
%O A321003 0,1
%A A321003 _N. J. A. Sloane_, Nov 01 2018