A122958 a(0)=1, a(n) = 2 - 2^(n-1) for n>0.
1, 1, 0, -2, -6, -14, -30, -62, -126, -254, -510, -1022, -2046, -4094, -8190, -16382, -32766, -65534, -131070, -262142, -524286, -1048574, -2097150, -4194302, -8388606, -16777214, -33554430, -67108862, -134217726, -268435454, -536870910, -1073741822, -2147483646
Offset: 0
Examples
G.f. = 1 + x - 2*x^3 - 6*x^4 - 14*x^5 - 30*x^6 - 62*x^7 - 126*x^8 - 254*x^9 + ...
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Yasemin Alp and E. Gokcen Kocer, Exponential Almost-Riordan Arrays, Results Math. (2024) Vol. 79, 173.
- Index entries for linear recurrences with constant coefficients, signature (3,-2).
Programs
-
Mathematica
Join[{1}, LinearRecurrence[{3, -2}, {1, 0}, 50]] (* Vladimir Joseph Stephan Orlovsky, Feb 24 2012 *) Join[{1},2-2^#&/@Range[0,30]] (* Harvey P. Dale, Jan 19 2021 *)
-
PARI
{a(n) = if( n<1, n==0, 2 - 2^(n-1))}; /* Michael Somos, Feb 08 2015 */
Formula
a(0) = 1, a(1) = 1, a(2) = 0, a(n) = 3*a(n-1) - 2*a(n-2) for n>2.
G.f.: (1 - 2*x - x^2)/(1 - 3*x + 2*x^2).
a(n) = -A000918(n-1) for n>0.
a(n+1) = 2*a(n) - 2 for n>0. - Michael Somos, Feb 08 2015
E.g.f.: exp(x)*(2 - cosh(x)). - Stefano Spezia, May 07 2023
Extensions
Corrected a(22) by Vincenzo Librandi, Aug 11 2011
Comments