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.
%I A048482 #22 Sep 08 2022 08:44:57 %S A048482 1,3,13,49,161,481,1345,3585,9217,23041,56321,135169,319489,745473, %T A048482 1720321,3932161,8912897,20054017,44826625,99614721,220200961, %U A048482 484442113,1061158913,2315255809,5033164801,10905190401,23555211265,50734301185,108984795137 %N A048482 a(n) = T(n,n), array T given by A048472. %H A048482 Vincenzo Librandi, <a href="/A048482/b048482.txt">Table of n, a(n) for n = 0..1000</a> %H A048482 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (7,-18,20,-8). %F A048482 a(n) = 2 * A001788(n) + 1. %F A048482 a(n) = (n^2+n)*2^(n-1) + 1. - _Ralf Stephan_, Sep 02 2003 %F A048482 G.f.: -(8*x^3-10*x^2+4*x-1) / ((x-1)*(2*x-1)^3). - _Colin Barker_, Nov 26 2014 %F A048482 a(0)=1, a(1)=3, a(2)=13, a(3)=49, a(n)=7*a(n-1)-18*a(n-2)+ 20*a(n-3)- 8*a(n-4). - _Harvey P. Dale_, Feb 02 2015 %t A048482 LinearRecurrence[{7,-18,20,-8},{1,3,13,49},30] (* _Harvey P. Dale_, Feb 02 2015 *) %o A048482 (Magma) [(n^2+n)*2^(n-1) + 1: n in [0..30]]; // _Vincenzo Librandi_, Sep 23 2011 %o A048482 (PARI) Vec(-(8*x^3-10*x^2+4*x-1)/((x-1)*(2*x-1)^3) + O(x^100)) \\ _Colin Barker_, Nov 26 2014 %Y A048482 Cf. A002999, A003013, A001787, A005183, A001788. %K A048482 nonn,easy %O A048482 0,2 %A A048482 _Clark Kimberling_