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!)
A114346 The integer difference between the surface area of the unit sphere in n-1 dimensions and the volume of the unit sphere in n+1 dimensions. 1
1, 2, 7, 14, 21, 26, 29, 29, 27, 23, 19, 15, 11, 8, 5, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence is important in the n dimensional (topological dimension) theory of particles and has a maximum at n=8.
REFERENCES
D. M. Y Sommerville, An Introduction to the Geometry of n dimensions, Dover Publications, 1958, pages 136-137.
LINKS
Wikipedia, N-sphere
FORMULA
Let S(n) = 2*Pi^((n+1)/2)/Gamma((n+1)/2) and V(n) = Pi^(n/2)/Gamma(n/2+1). Then a(n) = floor|S(n-1)-V(n+1)|.
MAPLE
sar := proc(n)
2*Pi^((n+1)/2)/GAMMA((n+1)/2) ;
end proc:
vol := proc(n)
Pi^(n/2)/GAMMA(n/2+1) ;
end proc:
A114346 := proc(n)
floor(abs(sar(n-1)-vol(n+1))) ;
end proc: # R. J. Mathar, Mar 05 2016
MATHEMATICA
v[n_]=Pi^(n/2)/Gamma[n/2+1] s[n_]=2*Pi^(n/2)/Gamma[n/2] a=Table[Floor[Abs[s[n]-v[n+1]]], {n, 0, 20}]
CROSSREFS
Sequence in context: A187142 A263398 A161702 * A369972 A325159 A087324
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Feb 08 2006
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 April 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)