The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A224837 Surface area of Johnson square pyramid (rounded down) with all the edge-lengths equal to n. 2
2, 10, 24, 43, 68, 98, 133, 174, 221, 273, 330, 393, 461, 535, 614, 699, 789, 885, 986, 1092, 1204, 1322, 1445, 1573, 1707, 1846, 1991, 2141, 2297, 2458, 2625, 2797, 2975, 3158, 3346, 3540, 3740, 3945, 4155, 4371, 4592, 4819, 5051, 5289, 5532, 5781, 6035, 6294 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Johnson square pyramid: a square base with four equilateral triangular-faces. All the edge-lengths are equal.
LINKS
Wikipedia, Square pyramid
FORMULA
a(n) = floor((1+sqrt(3))*n^2).
EXAMPLE
a(3)=24: Surface area = (1+sqrt(3))*k^2 = (1+sqrt(3))*3^2 = 24.58845727 and floor(24.58845727) = 24.
MAPLE
KD:= proc() local a, b; a:=evalf(1+sqrt(3))*k^2; b:=floor(a); RETURN(b): end: seq(KD(), k=1..100);
MATHEMATICA
Table[Floor[(1+Sqrt[3])*k^2], {k, 500}]
PROG
(PARI) vector(500, k, floor((1+sqrt(3))*k^2))
(PARI) a(n)=n^2+sqrtint(3*n^4) \\ Charles R Greathouse IV, Sep 18 2013
CROSSREFS
Sequence in context: A120845 A330280 A293412 * A049450 A092906 A244383
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Sep 18 2013
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 13 01:02 EDT 2024. Contains 372497 sequences. (Running on oeis4.)