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

A090411
Expansion of (1-x)/(1-16x).
0
1, 15, 240, 3840, 61440, 983040, 15728640, 251658240, 4026531840, 64424509440, 1030792151040, 16492674416640, 263882790666240, 4222124650659840, 67553994410557440, 1080863910568919040, 17293822569102704640, 276701161105643274240, 4427218577690292387840
OFFSET
0,2
FORMULA
a(n) = 15*16^(n-1)+0^n/16.
a(n) = sum{j=0..3, sum{k=0..n, C(4n+j, 4k) }}.
a(n) = (A070775(n) + A090407(n) + A001025(n) + A090408(n))/4.
MATHEMATICA
Join[{1, a = 15}, Table[a=16*a, {n, 0, 30}]] (* Vladimir Joseph Stephan Orlovsky, Jun 10 2011 *)
Join[{1}, NestList[16#&, 15, 20]] (* Harvey P. Dale, Dec 28 2016 *)
PROG
(PARI) a(n)=if(n, 15<<(4*n-4), 1) \\ Charles R Greathouse IV, Jun 10 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Nov 30 2003
STATUS
approved