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 A133356 #30 Jan 01 2024 11:44:34 %S A133356 1,1,18,52,392,1616,9504,44864,241792,1201408,6271488,31765504, %T A133356 163874816,835997696,4293992448,21963948032,112631775232,576686718976, %U A133356 2955481841664,15137951186944,77563611840512,397334442672128 %N A133356 a(n) = 2*a(n-1) + 16*a(n-2) for n>1, a(0)=1, a(1)=1. %C A133356 Binomial transform of A001026 (powers of 17), with interpolated zeros . %H A133356 Harvey P. Dale, <a href="/A133356/b133356.txt">Table of n, a(n) for n = 0..1000</a> %H A133356 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,16). %F A133356 G.f.: (1-x)/(1-2*x-16*x^2). %F A133356 a(n) = Sum_{k=0..n} A098158(n,k)*17^(n-k). - _Philippe Deléham_, Dec 26 2007 %F A133356 If p[1]=1, and p[i]=17, (i>1), and if A is Hessenberg matrix of order n defined by: A[i,j] = p[j-i+1], (i<=j), A[i,j] = -1, (i=j+1), and A[i,j]=0 otherwise. Then, for n>=1, a(n)=det A. - _Milan Janjic_, Apr 29 2010 %F A133356 a(n) = (4*i)^(n-1)*(4*i*ChebyshevU(n, -i/4) - ChebyshevU(n-1, -i/4)) = A161007(n) - A161007(n-1). - _G. C. Greubel_, Oct 15 2022 %t A133356 LinearRecurrence[{2,16},{1,1},30] (* _Harvey P. Dale_, Dec 12 2012 *) %o A133356 (PARI) Vec((1-x)/(1-2*x-16*x^2)+O(x^99)) \\ _Charles R Greathouse IV_, Jan 12 2012 %o A133356 (Magma) [n le 2 select 1 else 2*(Self(n-1) +8*Self(n-2)): n in [1..41]]; // _G. C. Greubel_, Oct 15 2022 %o A133356 (SageMath) %o A133356 A133356=BinaryRecurrenceSequence(2,16,1,1) %o A133356 [A133356(n) for n in range(41)] # _G. C. Greubel_, Oct 15 2022 %Y A133356 First differences of A161007. %Y A133356 Cf. A001026, A098158, A161007. %K A133356 nonn,easy %O A133356 0,3 %A A133356 _Philippe Deléham_, Dec 21 2007