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

A021150
Decimal expansion of 1/146.
1
0, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6, 8, 4, 9, 3, 1, 5, 0, 6
OFFSET
0,3
FORMULA
From Chai Wah Wu, Jun 21 2016: (Start)
a(n) = a(n-1) - a(n-4) + a(n-5) for n > 5.
G.f.: x^2*(-5*x^3 + 4*x^2 - 2*x - 6)/((x - 1)*(x^4 + 1)). (End)
MATHEMATICA
Join[{0, 0}, RealDigits[1/146, 10, 120][[1]]] (* or *) PadRight[{0}, 120, {5, 0, 6, 8, 4, 9, 3, 1}] (* Harvey P. Dale, Mar 23 2016 *)
PadLeft[First@ #, Abs@ Last@ # + Length@ First@ #] &@ RealDigits[N[1/146, 120]] (* Bruno Berselli, Jun 21 2016 *)
PROG
(Magma) I:=[0, 0, 6, 8, 4, 9]; [n le 6 select I[n] else Self(n-1)-Self(n-4)+Self(n-5): n in [1..100]]; // Vincenzo Librandi, Jun 21 2016
CROSSREFS
Sequence in context: A269991 A171784 A200133 * A347407 A065166 A006255
KEYWORD
nonn,cons
AUTHOR
STATUS
approved