# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a006138 Showing 1-1 of 1 %I A006138 M1399 #78 Dec 27 2023 11:52:43 %S A006138 1,2,5,11,26,59,137,314,725,1667,3842,8843,20369,46898,108005,248699, %T A006138 572714,1318811,3036953,6993386,16104245,37084403,85397138,196650347, %U A006138 452841761,1042792802,2401318085,5529696491,12733650746,29322740219,67523692457,155491913114 %N A006138 a(n) = a(n-1) + 3*a(n-2). %C A006138 The binomial transform of a(n) is b(n) = A006190(n+1), which satisfies b(n) = 3*b(n-1) + b(n-2). - _Paul Barry_, May 21 2006 %C A006138 Partial sums of A105476. - _Paul Barry_, Feb 02 2007 %C A006138 An elephant sequence, see A175654. For the corner squares four A[5] vectors, with decimal values 69, 261, 321 and 324, lead to this sequence. For the central square these vectors lead to the companion sequence A105476 (without the first leading 1). - _Johannes W. Meijer_, Aug 15 2010 %C A006138 Equals the INVERTi transform of A063782: (1, 3, 10, 32, 104, ...). - _Gary W. Adamson_, Aug 14 2010 %C A006138 Pisano period lengths: 1, 3, 1, 6, 24, 3, 24, 6, 3, 24, 120, 6, 156, 24, 24, 12, 16, 3, 90, 24, ... - _R. J. Mathar_, Aug 10 2012 %C A006138 The sequence is the INVERT transform of A016116: (1, 1, 2, 2, 4, 4, 8, 8, ...). - _Gary W. Adamson_, Jul 17 2015 %D A006138 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A006138 Vincenzo Librandi, Table of n, a(n) for n = 0..200 %H A006138 N. T. Gridgeman, A new look at Fibonacci generalization, Fib,. Quart., 11 (1973), 40-55. %H A006138 Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009. %H A006138 Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992 %H A006138 Index entries for linear recurrences with constant coefficients, signature (1,3). %F A006138 a(n) = Sum_{k=0..n+1} A122950(n+1,k)*2^(n+1-k). - _Philippe Deléham_, Jan 04 2008 %F A006138 G.f.: (1+x)/(1-x-3*x^2). - _Paul Barry_, May 21 2006 %F A006138 a(n) = Sum_{k=0..n} C(floor((2n-k)/2),n-k)*3^floor(k/2). - _Paul Barry_, Feb 02 2007 %F A006138 a(n) = A006130(n) + A006130(n-1). - _R. J. Mathar_, Jun 22 2011 %F A006138 a(n) = (i*sqrt(3))^(n-1)*(i*sqrt(3)*ChebyshevU(n, 1/(2*i*sqrt(3))) + ChebyshevU(n-1, 1/(2*i*sqrt(3)))), where i=sqrt(-1). - _G. C. Greubel_, Nov 19 2019 %p A006138 A006138:=-(1+z)/(-1+z+3*z**2); # _Simon Plouffe_ in his 1992 dissertation %t A006138 CoefficientList[Series[(1+z)/(1-z-3*z^2), {z,0,40}], z] (* _Vladimir Joseph Stephan Orlovsky_, Jun 11 2011 *) %t A006138 Table[(I*Sqrt[3])^(n-1)*(I*Sqrt[3]*ChebyshevU[n, 1/(2*I*Sqrt[3])] + ChebyshevU[n-1, 1/(2*I*Sqrt[3])]), {n, 0, 40}]//Simplify (* _G. C. Greubel_, Nov 19 2019 *) %o A006138 (PARI) main(size)={my(v=vector(size),i);v[1]=1;v[2]=2;for(i=3,size,v[i]=v[i-1]+3*v[i-2]);return(v);} /* _Anders Hellström_, Jul 17 2015 */ %o A006138 (Magma) [n le 2 select n else Self(n-1)+3*Self(n-2): n in [1..40]]; // _Vincenzo Librandi_, Sep 15 2016 %o A006138 (Sage) %o A006138 def A006138_list(prec): %o A006138 P. = PowerSeriesRing(ZZ, prec) %o A006138 return P((1+x)/(1-x-3*x^2)).list() %o A006138 A006138_list(40) # _G. C. Greubel_, Nov 19 2019 %o A006138 (GAP) a:=[1,2];; for n in [3..40] do a[n]:=a[n-1]+3*a[n-2]; od; a; # _G. C. Greubel_, Nov 19 2019 %Y A006138 Cf. A063782. - _Gary W. Adamson_, Aug 14 2010 %Y A006138 Cf. A006130, A006190, A016116, A105476, A122950, A175654, A274977. %K A006138 nonn,easy %O A006138 0,2 %A A006138 _N. J. A. Sloane_ %E A006138 Typo in formula corrected by _Johannes W. Meijer_, Aug 15 2010 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE