A273636 Decimal expansion of ((Pi*(15+7*sqrt(5))^2)/(12*(25+10*sqrt(5))^(3/2)))^(1/3), the sphericity of the dodecahedron.
9, 1, 0, 4, 5, 3, 1, 8, 1, 4, 0, 9, 2, 4, 2, 2, 7, 9, 1, 6, 9, 5, 3, 8, 0, 3, 4, 4, 6, 6, 2, 5, 8, 6, 2, 8, 5, 7, 4, 5, 8, 6, 5, 8, 0, 2, 9, 4, 3, 3, 8, 0, 1, 2, 6, 5, 0, 6, 1, 5, 5, 4, 9, 9, 2, 1, 3, 6, 4, 6, 6, 2, 5, 0, 0, 5, 2, 6, 4, 8, 2, 1, 0, 7, 1, 1
Offset: 0
Examples
0.91045318140924227916953803446625862857458658029433801265061554...
Links
- Wikipedia, Sphericity.
- Index entries for transcendental numbers.
Programs
-
Mathematica
RealDigits[((Pi*(15 + 7*Sqrt[5])^2)/(12*(25 + 10*Sqrt[5])^(3/2)))^(1/3), 10, 120][[1]] (* Amiram Eldar, Jun 29 2023 *)
-
PARI
default(realprecision, 50080); my(x=((Pi*(15+7*sqrt(5))^2)/(12*(25+10*sqrt(5))^(3/2)))^(1/3)); for(k=1, 100, my(d=floor(x)); x=(x-d)*10; print1(d, ", "))