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

A181358
Number of twiddle factors in the first stage of a Pease Radix 4 Fast Fourier Transform.
1
8, 44, 188, 764, 3068, 12284, 49148, 196604, 786428, 3145724, 12582908, 50331644, 201326588, 805306364, 3221225468, 12884901884, 51539607548, 206158430204, 824633720828, 3298534883324, 13194139533308, 52776558133244, 211106232532988, 844424930131964
OFFSET
0,1
COMMENTS
Number of twiddle factors in the first stage of a Pease Radix 4 Fast Fourier Transform.
FORMULA
a(n) = 4*(3*4^n - 1).
From Colin Barker, Nov 26 2016: (Start)
a(n) = 4*A198693(n).
a(n) = 5*a(n-1) - 4*a(n-2) for n>1.
G.f.: 4*(2+x) / ((1-x) * (1-4*x)).
(End)
PROG
(PARI) Vec(4*(2+x) / ((1-x) * (1-4*x)) + O(x^30)) \\ Colin Barker, Nov 26 2016
CROSSREFS
Sequence in context: A059596 A327386 A341386 * A005798 A092877 A160521
KEYWORD
nonn,easy
AUTHOR
Robert Koutsoyannis (bob.koutsoyannis(AT)gmail.com), Oct 14 2010
STATUS
approved