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.

A048512 a(n) = T(7,n), array T given by A048505.

This page as a plain text file.
%I A048512 #18 Sep 08 2022 08:44:57
%S A048512 1,65,210,536,1264,2880,6448,14288,31440,68816,149968,325584,704464,
%T A048512 1519568,3268560,7012304,15007696,32047056,68288464,145227728,
%U A048512 308281296,653262800,1382023120,2919235536,6157238224,12968787920
%N A048512 a(n) = T(7,n), array T given by A048505.
%C A048512 n-th difference of a(n), a(n-1), ..., a(0) is (64, 81, 100, 121, ...).
%H A048512 Vincenzo Librandi, <a href="/A048512/b048512.txt">Table of n, a(n) for n = 0..2000</a>
%H A048512 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (7,-18,20,-8).
%F A048512 a(n) = (n^2+29*n+196) * 2^(n-2) - 48. - _Ralf Stephan_, Feb 05 2004
%F A048512 a(n) = 7*a(n-1)-18*a(n-2)+20*a(n-3)-8*a(n-4). - _Colin Barker_, Feb 25 2015
%F A048512 G.f.: (216*x^3-227*x^2+58*x+1) / ((x-1)*(2*x-1)^3). - _Colin Barker_, Feb 25 2015
%o A048512 (Magma) [(n^2+29*n+196) * 2^(n-2) - 48: n in [0..30]]; // _Vincenzo Librandi_, Sep 26 2011
%o A048512 (PARI) Vec((216*x^3-227*x^2+58*x+1)/((x-1)*(2*x-1)^3) + O(x^100)) \\ _Colin Barker_, Feb 25 2015
%K A048512 nonn,easy
%O A048512 0,2
%A A048512 _Clark Kimberling_