login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A179556 a(1) = 10; a(n) = a(n-1)*10 - 2^(n-2). 1
10, 99, 988, 9876, 98752, 987504, 9875008, 98750016, 987500032, 9875000064, 98750000128, 987500000256, 9875000000512, 98750000001024, 987500000002048, 9875000000004096, 98750000000008192, 987500000000016384, 9875000000000032768, 98750000000000065536 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
79/80 = 0.9875.
LINKS
FORMULA
From Colin Barker, Oct 03 2015: (Start)
a(n) = 12*a(n-1) - 20*a(n-2) for n > 2.
G.f.: -x*(21*x - 10)/((2*x - 1)*(10*x - 1)). (End)
E.g.f.: (79*exp(10*x) + 5*exp(2*x) - 84)/80. - Stefano Spezia, Mar 04 2023
MATHEMATICA
a[1] := 10; a[n_] := a[n] = 10 a[n - 1] - 2^(n - 2); Array[a@ # &, {20}] (* Michael De Vlieger, Oct 03 2015 *)
PROG
(PARI) Vec(-x*(21*x-10)/((2*x-1)*(10*x-1)) + O(x^30)) \\ Colin Barker, Oct 03 2015
(PARI) a(n) = if(n<2, 10, a(n-1)*10 - 2^(n-2));
vector(30, n, a(n)) \\ Altug Alkan, Oct 03 2015
CROSSREFS
Sequence in context: A004189 A322054 A179558 * A179477 A179555 A105694
KEYWORD
nonn,easy
AUTHOR
Mark Dols, Jul 19 2010
EXTENSIONS
Name edited by Colin Barker, Oct 03 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)