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 A166060 #39 May 18 2024 14:54:00 %S A166060 1,6,24,84,276,876,2724,8364,25476,77196,233124,702444,2113476, %T A166060 6352716,19082724,57297324,171990276,516167436,1548895524,4647473004, %U A166060 13943991876,41835121356,125511655524,376547549484,1129667814276,3389053774476,10167261986724,30501987286764 %N A166060 a(n) = 4*3^n - 3*2^n. %C A166060 Second binomial transform of A123932 = [1,4,4,4,4,4,4,4,...]. %H A166060 Vincenzo Librandi, <a href="/A166060/b166060.txt">Table of n, a(n) for n = 0..1000</a> %H A166060 John Elias, <a href="/A166060/a166060.png">Illustration of initial terms: Sierpinski-tetra-triangles</a> %H A166060 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (5,-6). %F A166060 a(n) = 5*a(n-1) - 6*a(n-2) for n > 1; a(0)= 1, a(1)= 6. %F A166060 G.f.: (1+x)/(1-5x+6x^2). %F A166060 a(n) = A217764(n,6). - _Ross La Haye_, Mar 27 2013 %F A166060 a(n) = Sum_{k = 1..2^n} A082560(n+1,k). - _Reinhard Zumkeller_, May 14 2015 %F A166060 E.g.f.: exp(2*x)*(4*exp(x) - 3). - _Stefano Spezia_, May 18 2024 %t A166060 CoefficientList[Series[(1+x)/((1-2x)*(1-3x)), {x, 0, 30}], x] (* _Vincenzo Librandi_, Dec 05 2012 *) %o A166060 (PARI) a(n)=4*3^n-3<<n \\ _Charles R Greathouse IV_, Jan 12 2012 %o A166060 (Magma) [4*3^n-3*2^n: n in [0..30]]; // _Vincenzo Librandi_, Dec 05 2012 %o A166060 (Haskell) %o A166060 a166060 n = a166060_list !! n %o A166060 a166060_list = map fst $ iterate (\(u, v) -> (3 * (u + v), 2 * v)) (1, 1) %o A166060 -- _Reinhard Zumkeller_, Jun 09 2013 %Y A166060 Cf. A082560, A123932, A217764, A257956. %K A166060 nonn,easy %O A166060 0,2 %A A166060 _Philippe Deléham_, Oct 05 2009 %E A166060 a(19) and a(22) corrected by _Charles R Greathouse IV_, Jan 12 2012