login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372148
a(n) = A371764(n, 2).
1
1, 14, 86, 374, 1382, 4694, 15206, 47894, 148262, 453974, 1380326, 4177814, 12607142, 37968854, 114201446, 343194134, 1030762022, 3094645334, 9288654566, 27875400854, 83645076902, 250972979414, 752994435686, 2259134301974
OFFSET
1,2
FORMULA
a(n) = 2*(4*3^n - 9*2^n + 7) - [n = 1]. - Hugo Pfoertner, Apr 20 2024
G.f.: x*(1 + 8*x + 13*x^2 + 6*x^3)/((1 - x)*(1 - 2*x)*(1 - 3*x)). - Stefano Spezia, Apr 21 2024
MAPLE
a := n -> 2*(4*3^n - 9*2^n + 7) - `if`(n=1, 1, 0);
seq(a(n), n = 1..24); # Peter Luschny, Apr 20 2024
MATHEMATICA
A372148[n_] := 2*(4*3^n - 9*2^n + 7) - Boole[n == 1]; Array[A372148, 50] (* or *)
LinearRecurrence[{6, -11, 6}, {1, 14, 86, 374}, 50] (* Paolo Xausa, May 25 2024 *)
CROSSREFS
Cf. A371764.
Sequence in context: A244865 A059600 A206621 * A213121 A125324 A126482
KEYWORD
nonn,easy
AUTHOR
Detlef Meya, Apr 20 2024
STATUS
approved