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!)
A199083 Decimal expansion of x>0 satisfying x^2 + 2*sin(x) = 2. 3
7, 7, 4, 9, 8, 0, 8, 1, 4, 4, 2, 3, 0, 4, 3, 4, 4, 5, 9, 5, 8, 5, 9, 3, 5, 0, 2, 4, 7, 0, 4, 0, 1, 9, 1, 4, 6, 7, 6, 9, 3, 8, 6, 6, 1, 8, 5, 6, 1, 6, 3, 3, 1, 0, 6, 1, 5, 5, 2, 5, 6, 6, 3, 6, 2, 3, 7, 4, 2, 3, 1, 3, 5, 3, 1, 4, 1, 1, 7, 5, 2, 0, 4, 7, 9, 4, 0, 9, 8, 0, 5, 2, 1, 4, 2, 2, 7, 5, 4, 2, 6 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A198866 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
negative: -1.96188424641083489341928077977489...
positive: 0.774980814423043445958593502470401...
MATHEMATICA
a = 1; b = 2; c = 2;
f[x_] := a*x^2 + b*Sin[x]; g[x_] := c
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x/.FindRoot[f[x] == g[x], {x, -1.97, -1.96}, WorkingPrecision -> 110]
RealDigits[r](* A199082 *)
r = x/.FindRoot[f[x] == g[x], {x, .77, .78}, WorkingPrecision -> 110]
RealDigits[r](* This sequence *)
PROG
(PARI) a=1; b=2; c=2; solve(x=0, 1, a*x^2 + b*sin(x) - c) \\ G. C. Greubel, Feb 20 2019
(Sage) a=1; b=2; c=2; (a*x^2 + b*sin(x)==c).find_root(0, 1, x) # G. C. Greubel, Feb 20 2019
CROSSREFS
Sequence in context: A010513 A225402 A081824 * A109939 A053011 A021133
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 02 2011
EXTENSIONS
Terms a(90) onward corrected by G. C. Greubel, Feb 20 2019
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 May 4 09:26 EDT 2024. Contains 372238 sequences. (Running on oeis4.)