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

A037525
Base-8 digits are, in order, the first n terms of the periodic sequence with initial period 2,1,0.
1
2, 17, 136, 1090, 8721, 69768, 558146, 4465169, 35721352, 285770818, 2286166545, 18289332360, 146314658882, 1170517271057, 9364138168456, 74913105347650, 599304842781201, 4794438742249608
OFFSET
1,1
FORMULA
G.f.: (2+x) / ((x-1)*(8*x-1)*(1+x+x^2)). - R. J. Mathar, Nov 21 2011
MATHEMATICA
With[{c=Flatten[Table[{2, 1, 0}, {7}]]}, Table[FromDigits[Take[c, n], 8], {n, 20}]] (* Harvey P. Dale, Aug 03 2011 *)
LinearRecurrence[{8, 0, 1, -8}, {2, 17, 136, 1090}, 200] (* Vincenzo Librandi, Nov 23 2011 *)
PROG
(Magma) I:=[2, 17, 136, 1090]; [n le 4 select I[n] else 8*Self(n-1)+Self(n-3)-8*Self(n-4): n in [1..20]]; // Vincenzo Librandi, Nov 23 2011
CROSSREFS
Sequence in context: A180840 A261120 A077243 * A037734 A201782 A132433
KEYWORD
nonn,base,easy
STATUS
approved