OFFSET
1,2
LINKS
FORMULA
G.f.: x*(1+x)*(2*x+1) / ( (x-1)*(8*x-1)*(1+x+x^2) ). - R. J. Mathar, Apr 27 2015
MATHEMATICA
Module[{nn=30, str}, str=PadRight[{}, nn, {1, 3, 2}]; Table[FromDigits[Take[ str, n], 8], {n, nn}]] (* Harvey P. Dale, Apr 22 2013 *)
PROG
(PARI) a(n)=([0, 1, 0, 0; 0, 0, 1, 0; 0, 0, 0, 1; -8, 1, 0, 8]^(n-1)*[1; 11; 90; 721])[1, 1] \\ Charles R Greathouse IV, Feb 13 2017
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved