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.

A081342 a(n) = (8^n + 2^n)/2.

This page as a plain text file.
%I A081342 #28 Sep 08 2022 08:45:09
%S A081342 1,5,34,260,2056,16400,131104,1048640,8388736,67109120,536871424,
%T A081342 4294968320,34359740416,274877911040,2199023263744,17592186060800,
%U A081342 140737488388096,1125899906908160,9007199254872064,72057594038190080,576460752303947776,4611686018428436480
%N A081342 a(n) = (8^n + 2^n)/2.
%C A081342 Binomial transform of A034494.
%C A081342 5th binomial transform of {1, 0, 9, 0, 81, 0, 729, 0, ...}.
%H A081342 Vincenzo Librandi, <a href="/A081342/b081342.txt">Table of n, a(n) for n = 0..200</a>
%H A081342 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (10,-16).
%F A081342 a(n) = (8^n + 2^n)/2.
%F A081342 a(n) = 10*a(n-1) - 16*a(n-2), a(0)=1, a(1)=5.
%F A081342 G.f.: (1-5*x)/((1-2*x)*(1-8*x)).
%F A081342 E.g.f.: exp(5*x)*cosh(3*x).
%F A081342 a(n) = ((5+sqrt(9))^n + (5-sqrt(9))^n)/2. - Al Hakanson (hawkuu(AT)gmail.com), Dec 08 2008
%F A081342 a(n) = A074603(n)/2. - _Michel Marcus_, Jan 09 2020
%p A081342 seq( (8^n + 2^n)/2, n=0..30); # _G. C. Greubel_, Jan 08 2020
%t A081342 Table[(8^n + 2^n)/2, {n, 0, 30}] (* _Vladimir Joseph Stephan Orlovsky_, Jun 12 2011 *)
%o A081342 (Magma) [(8^n+2^n)/2: n in [0..30]]; // _Vincenzo Librandi_, Jun 13 2011
%o A081342 (PARI) a(n)=(8^n+2^n)/2 \\ _Charles R Greathouse IV_, Sep 28 2015
%o A081342 (Sage) [(8^n + 2^n)/2 for n in (0..30)] # _G. C. Greubel_, Jan 08 2020
%o A081342 (GAP) List([0..30], n-> (8^n + 2^n)/2); # _G. C. Greubel_, Jan 08 2020
%Y A081342 Cf. A074603, A025551, A081343.
%K A081342 easy,nonn
%O A081342 0,2
%A A081342 _Paul Barry_, Mar 18 2003