cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-10 of 80 results. Next

A248275 Egyptian fraction representation of sqrt(50) (A010503) using a greedy function.

Original entry on oeis.org

7, 15, 228, 65875, 47908261511, 2667718882316939409472, 10322125191786944152031025720794295875480056, 2674110852900041212107591350675026110499276180787546409661407265673151668416641308455602
Offset: 0

Views

Author

Robert G. Wilson v, Oct 04 2014

Keywords

Crossrefs

Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322.
Egyptian fraction representations of the cube roots: A129702, A132480-A132574.

Programs

  • Mathematica
    Egyptian[nbr_] := Block[{lst = {IntegerPart[nbr]}, cons = N[ FractionalPart[ nbr], 2^20], denom, iter = 8}, While[ iter > 0, denom = Ceiling[ 1/cons]; AppendTo[ lst, denom]; cons -= 1/denom; iter--]; lst]; Egyptian[ Sqrt[ 50]]

A002193 Decimal expansion of square root of 2.

Original entry on oeis.org

1, 4, 1, 4, 2, 1, 3, 5, 6, 2, 3, 7, 3, 0, 9, 5, 0, 4, 8, 8, 0, 1, 6, 8, 8, 7, 2, 4, 2, 0, 9, 6, 9, 8, 0, 7, 8, 5, 6, 9, 6, 7, 1, 8, 7, 5, 3, 7, 6, 9, 4, 8, 0, 7, 3, 1, 7, 6, 6, 7, 9, 7, 3, 7, 9, 9, 0, 7, 3, 2, 4, 7, 8, 4, 6, 2, 1, 0, 7, 0, 3, 8, 8, 5, 0, 3, 8, 7, 5, 3, 4, 3, 2, 7, 6, 4, 1, 5, 7
Offset: 1

Views

Author

Keywords

Comments

Sometimes called Pythagoras's constant.
Its continued fraction expansion is [1; 2, 2, 2, ...] (see A040000). - Arkadiusz Wesolowski, Mar 10 2012
The discovery of irrational numbers is attributed to Hippasus of Metapontum, who may have proved that sqrt(2) is not a rational number; thus sqrt(2) is often regarded as the earliest known irrational number. - Clark Kimberling, Oct 12 2017
From Clark Kimberling, Oct 12 2017: (Start)
In the first million digits,
0 occurs 99814 times;
1 occurs 99925 times;
2 occurs 100436 times;
3 occurs 100190 times;
4 occurs 100024 times;
5 occurs 100155 times;
6 occurs 99886 times;
7 occurs 100008 times;
8 occurs 100441 times;
9 occurs 100121 times. (End)
Diameter of a sphere whose surface area equals 2*Pi. More generally, the square root of x is also the diameter of a sphere whose surface area equals x*Pi. - Omar E. Pol, Nov 10 2018
Sqrt(2) = 1 + area of region bounded by y = sin x, y = cos x, and x = 0. - Clark Kimberling, Jul 03 2020
Also aspect ratio of the ISO 216 standard for paper sizes. - Stefano Spezia, Feb 24 2021
The standard deviation of a roll of a 5-sided die. - Mohammed Yaseen, Feb 23 2023
From Michal Paulovic, Mar 22 2023: (Start)
The length of a unit square diagonal.
The infinite tetration (power tower) sqrt(2)^(sqrt(2)^(sqrt(2)^(...))) equals 2 from the identity (x^(1/x))^((x^(1/x))^((x^(1/x))^(...))) = x where 1/e <= x <= e. (End)

Examples

			1.41421356237309504880168872420969807856967187537694807317667...
		

References

  • John H. Conway and Richard K. Guy, The Book of Numbers, New York: Springer-Verlag, 1996. See pp. 24, 182.
  • Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, Section 1.1.
  • David Flannery, The Square Root of 2, Copernicus Books Springer-Praxis Pub. 2006.
  • Martin Gardner, Gardner's Workout, Chapter 2 "The Square Root of 2=1.414213562373095..." pp. 9-19 A. K. Peters MA 2002.
  • Jan Gullberg, Mathematics from the Birth of Numbers, W. W. Norton & Co., NY & London, 1997, §3.4 Irrational Numbers and §4.4 Powers and Roots, pp. 84, 145.
  • Alfred S. Posamentier, Math Charmers, Tantalizing Tidbits for the Mind, Prometheus Books, NY, 2003, pages 64-67.
  • B. Rittaud, Le fabuleux destin de sqrt(2), Le Pommier, Paris 2006.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • Jerome Spanier and Keith B. Oldham, "Atlas of Functions", Hemisphere Publishing Corp., 1987, chapter 60, page 605.
  • David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987, pp. 34-35.

Crossrefs

Cf. A004539 (binary version).

Programs

  • Haskell
    -- After Michael B. Porter's PARI program.
    a002193 n = a002193_list !! (n-1)
    a002193_list = w 2 0 where
    w x r = dig : w (100 * (x - (20 * r + dig) * dig)) (10 * r + dig)
    where dig = head (dropWhile (\d -> (20 * r + d) * d < x) [0..]) - 1
    -- Reinhard Zumkeller, Nov 22 2013
  • Maple
    Digits:=100; evalf(sqrt(2)); # Wesley Ivan Hurt, Dec 04 2013
  • Mathematica
    RealDigits[N[2^(1/2), 128]] (* Vladimir Joseph Stephan Orlovsky, Dec 25 2008 *)
  • Maxima
    fpprec: 100$ ev(bfloat(sqrt(2))); /* Martin Ettl, Oct 17 2012 */
    
  • PARI
    default(realprecision, 20080); x=sqrt(2); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b002193.txt", n, " ", d)); \\ Harry J. Smith, Apr 21 2009
    
  • PARI
    r=0; x=2; /* Digit-by-digit method */
    for(digits=1,100,{d=0;while((20*r+d)*d <= x,d++);
    d--; /* while loop overshoots correct digit */
    print(d);x=100*(x-(20*r+d)*d);r=10*r+d}) \\ Michael B. Porter, Oct 20 2009
    
  • PARI
    \\ Works in v2.15.0; n = 100 decimal places
    my(n=100); digits(floor(10^n*quadgen(8))) \\ Michal Paulovic, Mar 22 2023
    

Formula

Sqrt(2) = 14 * Sum_{n >= 0} (A001790(n)/2^A005187(floor(n/2)) * 10^(-2n-1)) where A001790(n) are numerators in expansion of 1/sqrt(1-x) and the denominators in expansion of 1/sqrt(1-x) are 2^A005187(n). 14 = 2*7, see A010503 (expansion of 1/sqrt(2)). - Gerald McGarvey, Jan 01 2005
Limit_{n -> +oo} (1/n)*(Sum_{k = 1..n} frac(sqrt(1+zeta(k+1)))) = 1/(1+sqrt(2)). - Yalcin Aktar, Jul 14 2005
sqrt(2) = 2 + n*A167199(n-1)/A167199(n) as n -> infinity (conjecture). - Mats Granvik, Oct 30 2009
sqrt(2) = limit as n goes to infinity of A179807(n+1)/A179807(n) - 1. - Mats Granvik, Feb 15 2011
sqrt(2) = Product_{l=0..k-1} 2*cos((2*l+1)*Pi/(4*k)) = (Product_{l=0..k-1} R(2*l+1,rho(4*k)) - 1), identical for k >= 1, with the row polynomials R(n, x) from A127672 and rho(4*k) := 2*cos(Pi/(4*k)) is the length ratio (smallest diagonal)/side in a regular (4*k)-gon. From the product formula given in a Oct 21 2013 formula contribution to A056594, with n -> 2*k, using cos(Pi-alpha) = - cos(alpha) to obtain 2 for the square of the present product. - Wolfdieter Lang, Oct 22 2013
If x = sqrt(2), 1/log(x - 1) + 1/log(x + 1) = 0. - Kritsada Moomuang, Jul 10 2020
From Amiram Eldar, Jul 25 2020: (Start)
Equals Product_{k>=0} (1 + (-1)^k/(2*k + 1)).
Equals Sum_{k>=0} binomial(2*k,k)/8^k. (End)
Equals i^(1/2) + i^(-1/2). - Gary W. Adamson, Jul 11 2022
Equals (sqrt(2) + (sqrt(2) + (sqrt(2) + ...)^(1/3))^(1/3))^(1/3). - Michal Paulovic, Mar 22 2023
Equals 1 + Sum_{k>=1} (-1)^(k-1)/(2^(2*k)*(2*k - 1))*binomial(2*k,k) [Newton]. - Stefano Spezia, Oct 15 2024
From Antonio Graciá Llorente, Dec 19 2024: (Start)
Equals Sum_{k>=0} 2*k*binomial(2*k,k)/8^k.
Equals Product_{k>=2} k/sqrt(k^2 + 1).
Equals Product_{k>=0} (6*k + 3)/((6*k + 3) - (-1)^k).
Equals Product_{k>=1} (2*k + 1)/((2*k + 1) + (-1)^k).
Equals Product_{k>=0} ((4*k + 3)*(4*k + 1 + (-1)^k))/((4*k + 1)*(4*k + 3 + (-1)^k)). (End)
Equals hypergeom([1/2, 1/2], [1/2], 1/2). - Stefano Spezia, Jan 05 2025

A023416 Number of 0's in binary expansion of n.

Original entry on oeis.org

1, 0, 1, 0, 2, 1, 1, 0, 3, 2, 2, 1, 2, 1, 1, 0, 4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0, 5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1, 4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0, 6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2, 5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1, 5, 4, 4, 3, 4, 3, 3, 2, 4
Offset: 0

Views

Author

Keywords

Comments

Another version (A080791) has a(0) = 0.

Crossrefs

The basic sequences concerning the binary expansion of n are A000120, A000788, A000069, A001969, A023416, A059015, A070939, A083652. Partial sums see A059015.
With initial zero and shifted right, same as A080791.
Cf. A055641 (for base 10), A188859.

Programs

  • Haskell
    a023416 0 = 1
    a023416 1 = 0
    a023416 n = a023416 n' + 1 - m where (n', m) = divMod n 2
    a023416_list = 1 : c [0] where c (z:zs) = z : c (zs ++ [z+1,z])
    -- Reinhard Zumkeller, Feb 19 2012, Jun 16 2011, Mar 07 2011
    
  • Maple
    A023416 := proc(n)
        if n = 0 then
            1;
        else
            add(1-e,e=convert(n,base,2)) ;
        end if;
    end proc: # R. J. Mathar, Jul 21 2012
  • Mathematica
    Table[ Count[ IntegerDigits[n, 2], 0], {n, 0, 100} ]
    DigitCount[Range[0,110],2,0] (* Harvey P. Dale, Jan 10 2013 *)
  • PARI
    a(n)=if(n==0,1,n=binary(n); sum(i=1, #n, !n[i])) \\ Charles R Greathouse IV, Jun 10 2011
    
  • PARI
    a(n)=if(n==0,1,#binary(n)-hammingweight(n)) \\ Charles R Greathouse IV, Nov 20 2012
    
  • PARI
    a(n) = if(n == 0, 1, 1+logint(n,2) - hammingweight(n))  \\ Gheorghe Coserea, Sep 01 2015
    
  • Python
    def A023416(n): return n.bit_length()-n.bit_count() if n else 1 # Chai Wah Wu, Mar 13 2023

Formula

a(n) = 1, if n = 0; 0, if n = 1; a(n/2)+1 if n even; a((n-1)/2) if n odd.
a(n) = 1 - (n mod 2) + a(floor(n/2)). - Marc LeBrun, Jul 12 2001
G.f.: 1 + 1/(1-x) * Sum_{k>=0} x^(2^(k+1))/(1+x^2^k). - Ralf Stephan, Apr 15 2002
a(n) = A070939(n) - A000120(n).
a(n) = A008687(n+1) - 1.
a(n) = A000120(A035327(n)).
From Hieronymus Fischer, Jun 12 2012: (Start)
a(n) = m + 1 + Sum_{j=1..m+1} (floor(n/2^j) - floor(n/2^j + 1/2)), where m=floor(log_2(n)).
General formulas for the number of digits <= d in the base p representation n, where 0 <= d < p.
a(n) = m + 1 + Sum_{j=1..m+1} (floor(n/p^j) - floor(n/p^j + (p-d-1)/p)), where m=floor(log_p(n)).
G.f.: 1 + (1/(1-x))*Sum_{j>=0} ((1-x^(d*p^j))*x^p^j + (1-x^p^j)*x^p^(j+1)/(1-x^p^(j+1))). (End)
Product_{n>=1} ((2*n)/(2*n+1))^((-1)^a(n)) = sqrt(2)/2 (A010503) (see Allouche & Shallit link). - Michel Marcus, Aug 31 2014
Sum_{n>=1} a(n)/(n*(n+1)) = 2 - 2*log(2) (A188859) (Allouche and Shallit, 1990). - Amiram Eldar, Jun 01 2021

A198755 Decimal expansion of x>0 satisfying x^2+cos(x)=2.

Original entry on oeis.org

1, 3, 2, 5, 6, 2, 2, 5, 1, 8, 1, 4, 7, 5, 3, 6, 6, 2, 3, 4, 8, 3, 2, 2, 9, 0, 2, 9, 3, 8, 7, 9, 8, 7, 4, 4, 3, 3, 0, 4, 5, 4, 6, 7, 2, 5, 6, 5, 7, 6, 6, 4, 9, 5, 2, 6, 2, 7, 4, 0, 1, 8, 5, 3, 2, 0, 0, 8, 9, 5, 0, 6, 1, 6, 5, 9, 3, 0, 2, 4, 6, 5, 0, 3, 4, 1, 1, 0, 9, 7, 5, 9, 7, 7, 5, 7, 5, 6, 7
Offset: 1

Views

Author

Clark Kimberling, Oct 30 2011

Keywords

Comments

For many choices of a,b,c, there is a unique x>0 satisfying a*x^2+b*cos(x)=c.
Guide to related sequences, with graphs included in Mathematica programs:
a.... b.... c..... x
1.... 1.... 2..... A198755
1.... 1.... 3..... A198756
1.... 1.... 4..... A198757
1.... 2.... 3..... A198758
1.... 2.... 4..... A198811
1.... 3.... 3..... A198812
1.... 3.... 4..... A198813
1.... 4.... 3..... A198814
1.... 4.... 4..... A198815
1.... 1.... 0..... A125578
1... -1.... 1..... A198816
1... -1.... 2..... A198817
1... -1.... 3..... A198818
1... -1.... 4..... A198819
1... -2.... 1..... A198821
1... -2.... 2..... A198822
1... -2.... 3..... A198823
1... -2.... 4..... A198824
1... -2... -1..... A198825
1... -3.... 0..... A197807
1... -3.... 1..... A198826
1... -3.... 2..... A198828
1... -3.... 3..... A198829
1... -3.... 4..... A198830
1... -3... -1..... A198835
1... -3... -2..... A198836
1... -4.... 0..... A197808
1... -4.... 1..... A198838
1... -4.... 2..... A198839
1... -4.... 3..... A198840
1... -4.... 4..... A198841
1... -4... -1..... A198842
1... -4... -2..... A198843
1... -4... -3..... A198844
2.... 0.... 1..... A010503
2.... 0.... 3..... A115754
2.... 1.... 2..... A198820
2.... 1.... 3..... A198827
2.... 1.... 4..... A198837
2.... 2.... 3..... A198869
2.... 3.... 4..... A198870
2... -1.... 1..... A198871
2... -1.... 2..... A198872
2... -1.... 3..... A198873
2... -1.... 4..... A198874
2... -2... -1..... A198875
2... -2.... 3..... A198876
2... -3... -2..... A198877
2... -3... -1..... A198878
2... -3.... 1..... A198879
2... -3.... 2..... A198880
2... -3.... 3..... A198881
2... -3.... 4..... A198882
2... -4... -3..... A198883
2... -4... -1..... A198884
2... -4.... 1..... A198885
2... -4.... 3..... A198886
3.... 0.... 1..... A020760
3.... 1.... 2..... A198868
3.... 1.... 3..... A198917
3.... 1.... 4..... A198918
3.... 2.... 3..... A198919
3.... 2.... 4..... A198920
3.... 3.... 4..... A198921
3... -1.... 1..... A198922
3... -1.... 2..... A198924
3... -1.... 3..... A198925
3... -1.... 4..... A198926
3... -2... -1..... A198927
3... -2.... 1..... A198928
3... -2.... 2..... A198929
3... -2.... 3..... A198930
3... -2.... 4..... A198931
3... -3... -1..... A198932
3... -3.... 1..... A198933
3... -3.... 2..... A198934
3... -3.... 4..... A198935
3... -4... -3..... A198936
3... -4... -2..... A198937
3... -4... -1..... A198938
3... -4.... 1..... A198939
3... -4.... 2..... A198940
3... -4.... 3..... A198941
3... -4.... 4..... A198942
4.... 1.... 2..... A198923
4.... 1.... 3..... A198983
4.... 1.... 4..... A198984
4.... 2.... 3..... A198985
4.... 3.... 4..... A198986
4... -1.... 1..... A198987
4... -1.... 2..... A198988
4... -1.... 3..... A198989
4... -1.... 4..... A198990
4... -2... -1..... A198991
4... -2.... 1..... A198992
4... -2... -3..... A198993
4... -3... -2..... A198994
4... -3... -1..... A198995
4... -2.... 1..... A198996
4... -3.... 2..... A198997
4... -3.... 3..... A198998
4... -3.... 4..... A198999
4... -4... -3..... A199000
4... -4... -1..... A199001
4... -4.... 1..... A199002
4... -4.... 3..... A199003
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.
For an example related to A198755, take f(x,u,v)=x^2+u*cos(x)-v 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.

Examples

			1.32562251814753662348322902938798744330...
		

Crossrefs

Programs

  • Mathematica
    (* Program 1:  A198655 *)
    a = 1; b = 1; c = 2;
    f[x_] := a*x^2 + b*Cos[x]; g[x_] := c
    Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
    r = x /. FindRoot[f[x] == g[x], {x, 1.32, 1.33}, WorkingPrecision -> 110]
    RealDigits[r] (* A198755 *)
    (* Program 2: implicit surface of x^2+u*cos(x)=v *)
    f[{x_, u_, v_}] := x^2 + u*Cos[x] - v;
    t = Table[{u, v, x /. FindRoot[f[{x, u, v}] == 0, {x, 0, 3}]}, {u, -5, 4}, {v, u, 20}];
    ListPlot3D[Flatten[t, 1]]  (* for A198755 *)

A016945 a(n) = 6*n+3.

Original entry on oeis.org

3, 9, 15, 21, 27, 33, 39, 45, 51, 57, 63, 69, 75, 81, 87, 93, 99, 105, 111, 117, 123, 129, 135, 141, 147, 153, 159, 165, 171, 177, 183, 189, 195, 201, 207, 213, 219, 225, 231, 237, 243, 249, 255, 261, 267, 273, 279, 285, 291, 297, 303, 309, 315, 321, 327
Offset: 0

Views

Author

Keywords

Comments

Apart from initial term(s), dimension of the space of weight 2n cuspidal newforms for Gamma_0(37).
Continued fraction expansion of tanh(1/3).
If a 2-set Y and a 3-set Z are disjoint subsets of an n-set X then a(n-4) is the number of 3-subsets of X intersecting both Y and Z. - Milan Janjic, Sep 08 2007
Leaves of the Odd Collatz-Tree: a(n) has no odd predecessors in all '3x+1' trajectories where it occurs: A139391(2*k+1) <> a(n) for all k; A082286(n)=A006370(a(n)). - Reinhard Zumkeller, Apr 17 2008
Let random variable X have a uniform distribution on the interval [0,c] where c is a positive constant. Then, for positive integer n, the coefficient of determination between X and X^n is (6n+3)/(n+2)^2, that is, A016945(n)/A000290(n+2). Note that the result is independent of c. For the derivation of this result, see the link in the Links section below. - Dennis P. Walsh, Aug 20 2013
Positions of 3 in A020639. - Zak Seidov, Apr 29 2015
a(n+2) gives the sum of 6 consecutive terms of A004442 starting with A004442(n). - Wesley Ivan Hurt, Apr 08 2016
Numbers k such that Fibonacci(k) mod 4 = 2. - Bruno Berselli, Oct 17 2017
Also numbers k such that t^k == -1 (mod 7), where t is a member of A047389. - Bruno Berselli, Dec 28 2017

Crossrefs

Third row of A092260.
Subsequence of A061641; complement of A047263; bisection of A047241.
Cf. A000225. - Loren Pearson, Jul 02 2009
Cf. A020639. - Zak Seidov, Apr 29 2015
Odd numbers in A355200.

Programs

Formula

a(n) = 3*(2*n + 1) = 3*A005408(n), odd multiples of 3.
A008615(a(n)) = n. - Reinhard Zumkeller, Feb 27 2008
A157176(a(n)) = A103333(n+1). - Reinhard Zumkeller, Feb 24 2009
a(n) = 12*n - a(n-1) for n>0, a(0)=3. - Vincenzo Librandi, Nov 20 2010
G.f.: 3*(1+x)/(1-x)^2. - Mario C. Enriquez, Dec 14 2016
E.g.f.: 3*(1 + 2*x)*exp(x). - G. C. Greubel, Sep 18 2019
Sum_{n>=0} (-1)^n/a(n) = Pi/12 (A019679). - Amiram Eldar, Dec 10 2021
From Amiram Eldar, Nov 22 2024: (Start)
Product_{n>=0} (1 - (-1)^n/a(n)) = sqrt(2)/2 (A010503).
Product_{n>=0} (1 + (-1)^n/a(n)) = sqrt(3/2) (A115754). (End)
a(n) = (n+2)^2 - (n-1)^2. - Alexander Yutkin, Mar 15 2025

A010527 Decimal expansion of sqrt(3)/2.

Original entry on oeis.org

8, 6, 6, 0, 2, 5, 4, 0, 3, 7, 8, 4, 4, 3, 8, 6, 4, 6, 7, 6, 3, 7, 2, 3, 1, 7, 0, 7, 5, 2, 9, 3, 6, 1, 8, 3, 4, 7, 1, 4, 0, 2, 6, 2, 6, 9, 0, 5, 1, 9, 0, 3, 1, 4, 0, 2, 7, 9, 0, 3, 4, 8, 9, 7, 2, 5, 9, 6, 6, 5, 0, 8, 4, 5, 4, 4, 0, 0, 0, 1, 8, 5, 4, 0, 5, 7, 3, 0, 9, 3, 3, 7, 8, 6, 2, 4, 2, 8, 7, 8, 3, 7, 8, 1, 3
Offset: 0

Views

Author

Keywords

Comments

This is the ratio of the height of an equilateral triangle to its base.
Essentially the same sequence arises from decimal expansion of square root of 75, which is 8.6602540378443864676372317...
Also the real part of i^(1/3), the cubic root of i. - Stanislav Sykora, Apr 25 2012
Gilbert & Pollak conjectured that this is the Steiner ratio rho_2, the least upper bound of the ratio of the length of the Steiner minimal tree to the length of the minimal tree in dimension 2. (See Ivanov & Tuzhilin for the status of this conjecture as of 2012.) - Charles R Greathouse IV, Dec 11 2012
Surface area of a regular icosahedron with unit edge is 5*sqrt(3), i.e., 10 times this constant. - Stanislav Sykora, Nov 29 2013
Circumscribed sphere radius for a cube with unit edges. - Stanislav Sykora, Feb 10 2014
Also the ratio between the height and the pitch, used in the Unified Thread Standard (UTS). - Enrique Pérez Herrero, Nov 13 2014
Area of a 30-60-90 triangle with shortest side equal to 1. - Wesley Ivan Hurt, Apr 09 2016
If a, b, c are the sides of a triangle ABC and h_a, h_b, h_c the corresponding altitudes, then (h_a+h_b+h_c) / (a+b+c) <= sqrt(3)/2; equality is obtained only when the triangle is equilateral (see Mitrinovic reference). - Bernard Schott, Sep 26 2022

Examples

			0.86602540378443864676372317...
		

References

  • Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, 2003, Sections 8.2, 8.3 and 8.6, pp. 484, 489, and 504.
  • Jan Gullberg, Mathematics from the Birth of Numbers, W. W. Norton & Co., NY & London, 1997, §12.4 Theorems and Formulas (Solid Geometry), pp. 450-451.
  • D. S. Mitrinovic, E. S. Barnes, D. C. B. Marsh, and J. R. M. Radok, Elementary Inequalities, Tutorial Text 1 (1964), P. Noordhoff LTD, Groningen, problem 6.8, page 114.

Crossrefs

Cf. A010153.
Cf. Platonic solids surfaces: A002194 (tetrahedron), A010469 (octahedron), A131595 (dodecahedron).
Cf. Platonic solids circumradii: A010503 (octahedron), A019881 (icosahedron), A179296 (dodecahedron), A187110 (tetrahedron).
Cf. A126664 (continued fraction), A144535/A144536 (convergents).
Cf. A002194, A010502, A020821, A104956, A152623 (other geometric inequalities).

Programs

  • Magma
    SetDefaultRealField(RealField(100)); Sqrt(3)/2; // G. C. Greubel, Nov 02 2018
  • Maple
    Digits:=100: evalf(sqrt(3)/2); # Wesley Ivan Hurt, Apr 09 2016
  • Mathematica
    RealDigits[Sqrt[3]/2, 10, 200][[1]] (* Vladimir Joseph Stephan Orlovsky, Feb 21 2011 *)
  • PARI
    default(realprecision, 20080); x=10*(sqrt(3)/2); for (n=0, 20000, d=floor(x); x=(x-d)*10; write("b010527.txt", n, " ", d));  \\ Harry J. Smith, Jun 02 2009
    
  • PARI
    sqrt(3)/2 \\ Michel Marcus, Apr 10 2016
    

Formula

Equals cos(30 degrees). - Kausthub Gudipati, Aug 15 2011
Equals A002194/2. - Stanislav Sykora, Nov 30 2013
From Amiram Eldar, Jun 29 2020: (Start)
Equals sin(Pi/3) = cos(Pi/6).
Equals Integral_{x=0..Pi/3} cos(x) dx. (End)
Equals 1/(10*A020832). - Bernard Schott, Sep 29 2022
Equals x^(x^(x^...)) where x = (3/4)^(1/sqrt(3)) (infinite power tower). - Michal Paulovic, Jun 25 2023
Equals 2F1(-1/4,1/4 ; 1/2 ; 3/4) . - R. J. Mathar, Aug 31 2025

Extensions

Last term corrected and more terms added by Harry J. Smith, Jun 02 2009

A049541 Decimal expansion of 1/Pi.

Original entry on oeis.org

3, 1, 8, 3, 0, 9, 8, 8, 6, 1, 8, 3, 7, 9, 0, 6, 7, 1, 5, 3, 7, 7, 6, 7, 5, 2, 6, 7, 4, 5, 0, 2, 8, 7, 2, 4, 0, 6, 8, 9, 1, 9, 2, 9, 1, 4, 8, 0, 9, 1, 2, 8, 9, 7, 4, 9, 5, 3, 3, 4, 6, 8, 8, 1, 1, 7, 7, 9, 3, 5, 9, 5, 2, 6, 8, 4, 5, 3, 0, 7, 0, 1, 8, 0, 2, 2, 7, 6, 0, 5, 5, 3, 2, 5, 0, 6, 1, 7, 1
Offset: 0

Views

Author

N. J. A. Sloane, Dec 11 1999

Keywords

Comments

The ratio of the volume of a regular octahedron to the volume of the circumscribed sphere (which has circumradius a*sqrt(2)/2 = a*A010503, where a is the octahedron's edge length; see MathWorld link). For similar ratios for other Platonic solids, see A165922, A165952, A165953 and A165954. - Rick L. Shepherd, Oct 01 2009
Corresponds to a gauge point marked "M" on slide rule calculating devices in the 20th century. The Pickworth reference notes its use in calculating the area of the curved surface of a cylinder. - Peter Munn, Aug 14 2020

Examples

			0.3183098861837906715377675267450287240689192914809128974953...
		

References

  • J.-P. Delahaye, Pi - die Story (German translation), Birkhäuser, 1999 Baasel, p. 245. French original: Le fascinant nombre Pi, Pour la Science, Paris, 1997.
  • C. N. Pickworth, The Slide Rule, 24th Ed., Pitman, London, 1945, p. 53, Gauge Points.
  • David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987, p. 27.

Crossrefs

Programs

Formula

Equals (1/(12-16*A002162))*Sum_{n>=0} A002894(n)*H(n)/(A001025(n) * A016754(n-1)), where H(n) denotes the n-th harmonic number. - John M. Campbell, Aug 28 2016
1/Pi = Sum_{m>=0} binomial(2*m, m)^3 * (42*m+5)/(2^(12*m+4)), Ramanujan, from the J.-P. Delahaye reference. - Wolfdieter Lang, Sep 18 2018; corrected by Bernard Schott, Mar 26 2020
1/Pi = 12*Sum_{n >= 0} (-1)^n*((6*n)!/(n!^3*(3*n)!))*(13591409 + 545140134*n)/640320^(3*n + 3/2) [Chudnovsky]. - Sanjar Abrarov, Mar 31 2020
1/Pi = (sqrt(8)/9801) * Sum_{n >= 0} ((4*n)!/((n!)^4)) * (26390*n + 1103)/(396^(4*n)) [Ramanujan, 1914]. - Bernard Schott, Mar 26 2020
Equal Sum_{k>=2} tan(Pi/2^k)/2^k. - Amiram Eldar, Aug 05 2020
Floor((3/8)*Sum_{n>=1} sigma[3](n)*n/exp(Pi*n/(10^((1/5)*k+(1/5))))) mod 10, will give the k-th digit of 1/Pi. - Simon Plouffe, Dec 19 2023

A024036 a(n) = 4^n - 1.

Original entry on oeis.org

0, 3, 15, 63, 255, 1023, 4095, 16383, 65535, 262143, 1048575, 4194303, 16777215, 67108863, 268435455, 1073741823, 4294967295, 17179869183, 68719476735, 274877906943, 1099511627775, 4398046511103, 17592186044415, 70368744177663, 281474976710655
Offset: 0

Views

Author

Keywords

Comments

This sequence is the normalized length per iteration of the space-filling Peano-Hilbert curve. The curve remains in a square, but its length increases without bound. The length of the curve, after n iterations in a unit square, is a(n)*2^(-n) where a(n) = 4*a(n-1)+3. This is the sequence of a(n) values. a(n)*(2^(-n)*2^(-n)) tends to 1, the area of the square where the curve is generated, as n increases. The ratio between the number of segments of the curve at the n-th iteration (A015521) and a(n) tends to 4/5 as n increases. - Giorgio Balzarotti, Mar 16 2006
Numbers whose base-4 representation is 333....3. - Zerinvary Lajos, Feb 03 2007
From Eric Desbiaux, Jun 28 2009: (Start)
It appears that for a given area, a square n^2 can be divided into n^2+1 other squares.
It's a rotation and zoom out of a Cartesian plan, which creates squares with side
= sqrt( (n^2) / (n^2+1) ) --> A010503|A010532|A010541... --> limit 1,
and diagonal sqrt(2*sqrt((n^2)/(n^2+1))) --> A010767|... --> limit A002193.
(End)
Also the total number of line segments after the n-th stage in the H tree, if 4^(n-1) H's are added at the n-th stage to the structure in which every "H" is formed by 3 line segments. A164346 (the first differences of this sequence) gives the number of line segments added at the n-th stage. - Omar E. Pol, Feb 16 2013
a(n) is the cumulative number of segment deletions in a Koch snowflake after (n+1) iterations. - Ivan N. Ianakiev, Nov 22 2013
Inverse binomial transform of A005057. - Wesley Ivan Hurt, Apr 04 2014
For n > 0, a(n) is one-third the partial sums of A002063(n-1). - J. M. Bergot, May 23 2014
Also the cyclomatic number of the n-Sierpinski tetrahedron graph. - Eric W. Weisstein, Sep 18 2017

Examples

			G.f. = 3*x + 15*x^2 + 63*x^3 + 255*x^4 + 1023*x^5 + 4095*x^6 + ...
		

References

  • Graham Everest, Alf van der Poorten, Igor Shparlinski, and Thomas Ward, Recurrence Sequences, Amer. Math. Soc., 2003; see esp. p. 255.

Crossrefs

Programs

  • Haskell
    a024036 = (subtract 1) . a000302
    a024036_list = iterate ((+ 3) . (* 4)) 0
    -- Reinhard Zumkeller, Oct 03 2012
    
  • Maple
    A024036:=n->4^n-1; seq(A024036(n), n=0..30); # Wesley Ivan Hurt, Apr 04 2014
  • Mathematica
    Array[4^# - 1 &, 50, 0] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
    (* Start from Eric W. Weisstein, Sep 19 2017 *)
    Table[4^n - 1, {n, 0, 20}]
    4^Range[0, 20] - 1
    LinearRecurrence[{5, -4}, {0, 3}, 20]
    CoefficientList[Series[3 x/(1 - 5 x + 4 x^2), {x, 0, 20}], x]
    (* End *)
  • PARI
    for(n=0, 100, print1(4^n-1, ", ")) \\ Felix Fröhlich, Jul 04 2014
  • Sage
    [gaussian_binomial(2*n,1, 2) for n in range(21)] # Zerinvary Lajos, May 28 2009
    
  • Sage
    [stirling_number2(2*n+1, 2) for n in range(21)] # Zerinvary Lajos, Nov 26 2009
    

Formula

a(n) = 3*A002450(n). - N. J. A. Sloane, Feb 19 2004
G.f.: 3*x/((-1+x)*(-1+4*x)) = 1/(-1+x) - 1/(-1+4*x). - R. J. Mathar, Nov 23 2007
E.g.f.: exp(4*x) - exp(x). - Mohammad K. Azarian, Jan 14 2009
a(n) = A000051(n)*A000225(n). - Reinhard Zumkeller, Feb 14 2009
A079978(a(n)) = 1. - Reinhard Zumkeller, Nov 22 2009
a(n) = A179857(A000225(n)), for n > 0; a(n) > A179857(m), for m < A000225(n). - Reinhard Zumkeller, Jul 31 2010
a(n) = 4*a(n-1) + 3, with a(0) = 0. - Vincenzo Librandi, Aug 01 2010
A000120(a(n)) = 2*n. - Reinhard Zumkeller, Feb 07 2011
a(n) = (3/2)*A020988(n). - Omar E. Pol, Mar 15 2012
a(n) = (Sum_{i=0..n} A002001(i)) - 1 = A178789(n+1) - 3. - Ivan N. Ianakiev, Nov 22 2013
a(n) = n*E(2*n-1,1)/B(2*n,1), for n > 0, where E(n,x) denotes the Euler polynomials and B(n,x) the Bernoulli polynomials. - Peter Luschny, Apr 04 2014
a(n) = A000302(n) - 1. - Sean A. Irvine, Jun 18 2019
Sum_{n>=1} 1/a(n) = A248721. - Amiram Eldar, Nov 13 2020
a(n) = A080674(n) - A002450(n). - Elmo R. Oliveira, Dec 02 2023

Extensions

More terms Wesley Ivan Hurt, Apr 04 2014

A047522 Numbers that are congruent to {1, 7} mod 8.

Original entry on oeis.org

1, 7, 9, 15, 17, 23, 25, 31, 33, 39, 41, 47, 49, 55, 57, 63, 65, 71, 73, 79, 81, 87, 89, 95, 97, 103, 105, 111, 113, 119, 121, 127, 129, 135, 137, 143, 145, 151, 153, 159, 161, 167, 169, 175, 177, 183, 185, 191, 193, 199, 201, 207, 209, 215, 217, 223, 225, 231, 233
Offset: 1

Views

Author

Keywords

Comments

Also n such that Kronecker(2,n) = mu(gcd(2,n)). - Jon Perry and T. D. Noe, Jun 13 2003
Also n such that x^2 == 2 (mod n) has a solution. The primes are given in sequence A001132. - T. D. Noe, Jun 13 2003
As indicated in the formula, a(n) is related to the even triangular numbers. - Frederick Magata (frederick.magata(AT)uni-muenster.de), Jun 17 2004
Cf. property described by Gary Detlefs in A113801: more generally, these a(n) are of the form (2*h*n + (h-4)*(-1)^n-h)/4 (h,n natural numbers). Therefore a(n)^2 - 1 == 0 (mod h); in this case, a(n)^2 - 1 == 0 (mod 8). Also a(n)^2 - 1 == 0 (mod 16). - Bruno Berselli, Nov 17 2010
A089911(3*a(n)) = 2. - Reinhard Zumkeller, Jul 05 2013
S(a(n+1)/2, 0) = (1/2)*(S(a(n+1), sqrt(2)) - S(a(n+1) - 2, sqrt(2))) = T(a(n+1), sqrt(2)/2) = cos(a(n+1)*Pi/4) = sqrt(2)/2 = A010503, identically for n >= 0, where S is the Chebyshev polynomial (A049310) here extended to fractional n, evaluated at x = 0. (For T see A053120.) - Wolfdieter Lang, Jun 04 2023

References

  • L. B. W. Jolley, Summation of Series, Dover Publications, 1961, p. 16.

Crossrefs

Programs

  • Haskell
    a047522 n = a047522_list !! (n-1)
    a047522_list = 1 : 7 : map (+ 8) a047522_list
    -- Reinhard Zumkeller, Jan 07 2012
    
  • Mathematica
    Select[Range[1, 191, 2], JacobiSymbol[2, # ]==1&]
  • PARI
    a(n)=4*n-2+(-1)^n \\ Charles R Greathouse IV, Sep 24 2015

Formula

a(n) = sqrt(8*A014494(n)+1) = sqrt(16*ceiling(n/2)*(2*n+1)+1) = sqrt(8*A056575(n)-8*(2n+1)*(-1)^n+1). - Frederick Magata (frederick.magata(AT)uni-muenster.de), Jun 17 2004
1 - 1/7 + 1/9 - 1/15 + 1/17 - ... = (Pi/8)*(1 + sqrt(2)). [Jolley] - Gary W. Adamson, Dec 16 2006
From R. J. Mathar, Feb 19 2009: (Start)
a(n) = 4n - 2 + (-1)^n = a(n-2) + 8.
G.f.: x(1+6x+x^2)/((1+x)(1-x)^2). (End)
a(n) = 8*n - a(n-1) - 8. - Vincenzo Librandi, Aug 06 2010
From Bruno Berselli, Nov 17 2010: (Start)
a(n) = -a(-n+1) = a(n-1) + a(n-2) - a(n-3).
a(n) = 8*A000217(n-1)+1 - 2*Sum_{i=1..n-1} a(i) for n > 1. (End)
E.g.f.: 1 + (4*x - 1)*cosh(x) + (4*x - 3)*sinh(x). - Stefano Spezia, May 13 2021
E.g.f.: 1 + (4*x - 3)*exp(x) + 2*cosh(x). - David Lovler, Jul 16 2022
From Amiram Eldar, Nov 22 2024: (Start)
Product_{n>=1} (1 - (-1)^n/a(n)) = sqrt(2+sqrt(2)) (A179260).
Product_{n>=2} (1 + (-1)^n/a(n)) = (Pi/8)*cosec(Pi/8) (A352125). (End)

A019863 Decimal expansion of sin(3*Pi/10) (sine of 54 degrees, or cosine of 36 degrees).

Original entry on oeis.org

8, 0, 9, 0, 1, 6, 9, 9, 4, 3, 7, 4, 9, 4, 7, 4, 2, 4, 1, 0, 2, 2, 9, 3, 4, 1, 7, 1, 8, 2, 8, 1, 9, 0, 5, 8, 8, 6, 0, 1, 5, 4, 5, 8, 9, 9, 0, 2, 8, 8, 1, 4, 3, 1, 0, 6, 7, 7, 2, 4, 3, 1, 1, 3, 5, 2, 6, 3, 0, 2, 3, 1, 4, 0, 9, 4, 5, 1, 2, 2, 4, 8, 5, 3, 6, 0, 3, 6, 0, 2, 0, 9, 4, 6, 9, 5, 5, 6, 8
Offset: 0

Views

Author

Keywords

Comments

Midsphere radius of regular icosahedron with unit edges.
Also half of the golden ratio (A001622). - Stanislav Sykora, Jan 30 2014
Andris Ambainis (see Aaronson link) observes that combining the results of Barak-Hardt-Haviv-Rao with Dinur-Steurer yields the maximal probability of winning n parallel repetitions of a classical CHSH game (see A201488) asymptotic to this constant to the power of n, an improvement on the naive probability of (3/4)^n. (All the random bits are received upfront but the players cannot communicate or share an entangled state.) - Charles R Greathouse IV, May 15 2014
This is the height h of the isosceles triangle in a regular pentagon, in length units of the circumscribing radius, formed by a side as base and two adjacent radii. h = sin(3*Pi/10) = cos(Pi/5) (radius 1 unit). - Wolfdieter Lang, Jan 08 2018
Also the limiting value(L) of "r" which is abscissa of the vertex of the parabola F(n)*x^2 - F(n+1)*x + F(n + 2)(where F(n)=A000045(n) are the Fibonacci numbers and n>0). - Burak Muslu, Feb 24 2021

Examples

			0.80901699437494742410229341718281905886015458990288143106772431135263...
		

Crossrefs

Platonic solids midradii: A020765 (tetrahedron), A020761 (octahedron), A010503 (cube), A239798 (dodecahedron).

Programs

Formula

Equals (1+sqrt(5))/4 = cos(Pi/5) = sin(3*Pi/10). - R. J. Mathar, Jun 18 2006
Equals 2F1(4/5,1/5;1/2;3/4) / 2 = A019827 + 1/2. - R. J. Mathar, Oct 27 2008
Equals A001622 / 2. - Stanislav Sykora, Jan 30 2014
phi / 2 = (i^(2/5) + i^(-2/5)) / 2 = i^(2/5) - (sin(Pi/5))*i = i^(-2/5) + (sin(Pi/5))*i = i^(2/5) - (cos(3*Pi/10))*i = i^(-2/5) + (cos(3*Pi/10))*i. - Jaroslav Krizek, Feb 03 2014
Equals 1/A134972. - R. J. Mathar, Jan 17 2021
Equals 2*A019836*A019872. - R. J. Mathar, Jan 17 2021
Equals (A094214 + 1)/2 or 1/(2*A094214). - Burak Muslu, Feb 24 2021
Equals hypergeom([-2/5, -3/5], [6/5], -1) = hypergeom([-1/5, 3/5], [6/5], 1) = hypergeom([1/5, -3/5], [4/5], 1). - Peter Bala, Mar 04 2022
Equals Product_{k>=1} (1 - (-1)^k/A001611(k)). - Amiram Eldar, Nov 28 2024
Equals 2*A134944 = 3*A134946 = A187426-11/10 = A296182-1. - Hugo Pfoertner, Nov 28 2024
Equals A134945/4. Root of 4*x^2-2*x-1=0. - R. J. Mathar, Aug 29 2025
Showing 1-10 of 80 results. Next