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

A060416
a(n) = n*4^n - 1, with a(0) = 1.
7
1, 3, 31, 191, 1023, 5119, 24575, 114687, 524287, 2359295, 10485759, 46137343, 201326591, 872415231, 3758096383, 16106127359, 68719476735, 292057776127, 1236950581247, 5222680231935, 21990232555519, 92358976733183, 387028092977151, 1618481116086271, 6755399441055743
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 - 6*x + 28*x^2 - 32*x^3)/((1 - x)*(1 - 4*x)^2). - Colin Barker, Apr 22 2012
MATHEMATICA
CoefficientList[Series[(1 - 6 x + 28 x^2 - 32 x^3)/((1 - x) (1 - 4 x)^2), {x, 0, 21}], x] (* Michael De Vlieger, Jan 04 2020 *)
PROG
(PARI) a(n) = { abs(n*4^n - 1) } \\ Harry J. Smith, Jul 04 2009
CROSSREFS
Sequence in context: A007233 A197892 A198009 * A333368 A060425 A376950
KEYWORD
nonn,easy
AUTHOR
Jason Earls, Apr 05 2001
STATUS
approved