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”).

A339711
a(n) = A178901(n)/n.
0
2, 2, 2, 3, 4, 6, 10, 17, 30, 54, 98, 179, 330, 612, 1142, 2141, 4030, 7612, 14422, 27401, 52192, 99639, 190613, 365341, 701454, 1348950, 2597977, 5010384, 9675224, 18705433, 36204063, 70145372, 136039509, 264076693, 513063289, 997623061, 1941320551, 3780466336
OFFSET
1,1
EXAMPLE
a(4) = A178901(4)/4 = 12/4 = 3.
PROG
(PARI) lista(nn) = {my(va = vector(nn)); va[1] = 2; for (n=2, nn, va[n] = (2*(n-1)*va[n-1]\n); ); va; } \\ Michel Marcus, Dec 18 2020
CROSSREFS
Cf. A178901.
Sequence in context: A098523 A350514 A308620 * A048185 A368520 A377083
KEYWORD
nonn
AUTHOR
J. Lowell, Dec 16 2020
STATUS
approved