[go: up one dir, main page]

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

A193085
Decimal expansion of the constant term of the reduction of (e^x)*sin(x) by x^2->x+1.
3
1, 1, 6, 6, 3, 4, 7, 3, 4, 8, 1, 9, 0, 8, 6, 4, 5, 4, 0, 4, 8, 1, 3, 2, 1, 6, 5, 5, 4, 7, 0, 2, 0, 1, 7, 2, 3, 9, 5, 9, 3, 0, 1, 2, 3, 1, 1, 8, 9, 4, 4, 5, 7, 2, 1, 4, 3, 5, 9, 2, 0, 7, 2, 5, 7, 0, 8, 4, 1, 5, 3, 4, 1, 0, 5, 8, 7, 1, 2, 2, 6, 8, 7, 1, 3, 1, 6, 0, 4, 9, 7, 5, 9, 5, 2, 9, 9, 3, 6, 1
OFFSET
1,3
COMMENTS
Reduction of a function f(x) by a substitution q(x)->s(x) is introduced at A193010.
EXAMPLE
constant=1.166347348190864540481321655470201723
...
MATHEMATICA
f[x_] := Exp[x] Sin[x]; r[n_] := Fibonacci[n];
c[n_] := SeriesCoefficient[Series[f[x], {x, 0, n}], n]
u0 = N[Sum[c[n]*r[n - 1], {n, 0, 100}], 100]
RealDigits[u0, 10] (* A193085 *)
u1 = N[Sum[c[n]*r[n], {n, 0, 100}], 100]
RealDigits[u1, 10] (* A193086 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Jul 15 2011
STATUS
approved