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!)
A201741 Decimal expansion of the number x satisfying x^2+2=e^x. 65

%I #14 Mar 30 2012 18:58:02

%S 1,3,1,9,0,7,3,6,7,6,8,5,7,3,6,5,3,5,4,4,1,7,8,9,9,1,0,9,5,2,0,8,4,8,

%T 4,6,4,4,2,1,9,6,6,7,8,0,8,2,5,4,9,7,6,6,9,2,5,6,0,8,9,0,0,4,9,0,5,1,

%U 2,7,0,7,6,3,4,6,1,0,7,3,1,6,7,2,5,1,0,4,0,6,3,8,4,4,9,4,0,2,7

%N Decimal expansion of the number x satisfying x^2+2=e^x.

%C For some choices of a, b, c, there is a unique value of x satisfying a*x^2+b*x+c=e^x, for other choices, there are two solutions, and for others, three. Guide to related sequences, with graphs included in Mathematica programs:

%C a.... b.... c.... x

%C 1.... 0.... 2.... A201741

%C 1.... 0.... 3.... A201742

%C 1.... 0.... 4.... A201743

%C 1.... 0.... 5.... A201744

%C 1.... 0.... 6.... A201745

%C 1.... 0.... 7.... A201746

%C 1.... 0.... 8.... A201747

%C 1.... 0.... 9.... A201748

%C 1.... 0.... 10... A201749

%C -1... 0.... 1.... A201750, (x=0)

%C -1... 0.... 2.... A201751, A201752

%C -1... 0.... 3.... A201753, A201754

%C -1... 0.... 4.... A201755, A201756

%C -1... 0.... 5.... A201757, A201758

%C -1... 0.... 6.... A201759, A201760

%C -1... 0.... 7.... A201761, A201762

%C -1... 0.... 8.... A201763, A201764

%C -1... 0.... 9.... A201765, A201766

%C -1... 0.... 10... A201767, A201768

%C 1.... 1.... 0.... A201769

%C 1.... 1.... 1.... ..(x=0), A201770

%C 1.... 1.... 2.... A201396

%C 1.... 1.... 3.... A201562

%C 1.... 1.... 4.... A201772

%C 1.... 1.... 5.... A201889

%C 1.... 2.... 1.... ..(x=0), A201890

%C 1.... 2.... 2.... A201891

%C 1.... 2.... 3.... A201892

%C 1.... 2.... 4.... A201893

%C 1.... 2.... 5.... A201894

%C 1.... 3.... 1.... A201895, ..(x=0), A201896

%C 1.... 3.... 2.... A201897, A201898, A201899

%C 1.... 3.... 3.... A201900

%C 1.... 3.... 4.... A201901

%C 1.... 3.... 5.... A201902

%C 1.... 4.... 1.... A201903, A201904

%C 1.... 4.... 2.... A201905, A201906, A201907

%C 1.... 4.... 3.... A201924, A201925, A201926

%C 1.... 4.... 4.... A201927, A201928, A201929

%C 1.... 4.... 5.... A201930

%C 1.... 5.... 1.... A201931, A201932

%C 1.... 5.... 2.... A201933, A201934, A201935

%C Suppose that f(x,u,v) is a function of three real variables and that g(u,v) is a function defined implicitly by f(g(u,v),u,v)=0. We call the graph of z=g(u,v) an implicit surface of f.

%C For an example related to A201741, take f(x,u,v)=u*x^2+v-e^x and g(u,v) = a nonzero solution x of f(x,u,v)=0. If there is more than one nonzero solution, care must be taken to ensure that the resulting function g(u,v) is single-valued and continuous. A portion of an implicit surface is plotted by Program 2 in the Mathematica section.

%e x=1.31907367685736535441789910952084846442196...

%t (* Program 1: A201741 *)

%t a = 1; b = 0; c = 2;

%t f[x_] := a*x^2 + b*x + c; g[x_] := E^x

%t Plot[{f[x], g[x]}, {x, -3, 3}, {AxesOrigin -> {0, 0}}]

%t r = x /. FindRoot[f[x] == g[x], {x, 1.2, 1.3}, WorkingPrecision -> 110]

%t RealDigits[r] (* A201741 *)

%t (* Program 2: implicit surface of u*x^2+v=E^x *)

%t f[{x_, u_, v_}] := u*x^2 + v - E^x;

%t t = Table[{u, v, x /. FindRoot[f[{x, u, v}] == 0, {x, 1, 5}]},

%t {v, 1, 3}, {u, 0, 5}];

%t ListPlot3D[Flatten[t, 1]] (* for A201741 *)

%Y Cf. A201936.

%K nonn,cons

%O 1,2

%A _Clark Kimberling_, Dec 04 2011

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 23 06:58 EDT 2024. Contains 371906 sequences. (Running on oeis4.)