OFFSET
0,1
COMMENTS
A108213 is a subsequence of this sequence and is also twice this sequence.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,2)
FORMULA
a(2n+1) = a(2n-2).
Recurrence: a(n) = 2a(n-2), a(0)=22, a(1)=11. G.f.: (22x+44)/(1-2x^2). - Ralf Stephan, Jul 16 2013
a(n) = 11 * 2^A028242(n). - Franklin T. Adams-Watters, Mar 29 2006
MATHEMATICA
nxt[{n_, a_}]:={n+1, If[EvenQ[n], a/2, 4a]}; NestList[nxt, {0, 22}, 40][[All, 2]] (* or *) LinearRecurrence[{0, 2}, {22, 11}, 40] (* Harvey P. Dale, Jul 22 2021 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Alexandre Wajnberg & Guadalupe Garcia, Jun 22 2005
STATUS
approved