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!)
A199049 Decimal expansion of x > 0 satisfying x^2 + sin(x) = 3. 3
1, 4, 1, 8, 3, 1, 0, 0, 9, 1, 6, 2, 2, 5, 2, 5, 0, 4, 5, 6, 9, 1, 9, 4, 9, 6, 0, 0, 8, 0, 3, 7, 4, 8, 2, 3, 9, 8, 7, 4, 7, 3, 3, 8, 7, 1, 5, 0, 3, 0, 4, 5, 6, 6, 1, 4, 3, 6, 9, 8, 3, 6, 8, 8, 5, 4, 8, 6, 4, 1, 9, 7, 7, 4, 5, 6, 5, 4, 9, 0, 8, 3, 2, 4, 4, 1, 8, 4, 8, 3, 8, 6, 0, 2, 5, 4, 1, 2, 7 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A198866 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
negative: -1.979320146556211460335749713988...
positive: 1.4183100916225250456919496008037...
MATHEMATICA
a = 1; b = 1; c = 3;
f[x_] := a*x^2 + b*Sin[x]; g[x_] := c
Plot[{f[x], g[x]}, {x, -3, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -1.98, -1.97}, WorkingPrecision -> 110]
RealDigits[r] (* A199048 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110]
RealDigits[r] (* A199049 *)
PROG
(PARI) a=1; b=1; c=3; solve(x=0, 1.5, a*x^2 - c + b*sin(x)) \\ G. C. Greubel, Feb 19 2019
(Sage) a=1; b=1; c=3; (a*x^2 + b*sin(x)==c).find_root(0, 2, x) # G. C. Greubel, Feb 19 2019
CROSSREFS
Sequence in context: A130297 A271478 A112032 * A145917 A201661 A263498
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 02 2011
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 July 11 01:22 EDT 2024. Contains 374215 sequences. (Running on oeis4.)