OFFSET
0,2
COMMENTS
Sequence gives the approximate perimeter of n hexagons of unit area, assuming each side is shared with another hexagon.
This could form a Beatty sequence.
This is not A195125, although they match until 37th term and never after the 1000th term.
LINKS
ABC Shop, The Code with description
American Scientist, The Soap Film: An Analogue Computer
American Scientist, Foams and Honeycombs
The BBC Productions, The Code; see in particular Behind the Beehive - The Code - Episode 2
Thomas C. Hales, The Honeycomb Conjecture, arXiv:math/9906042 [math.MG], 1999-2002.
Marcus P. F. du Sautoy, The Code, a DVD produced by Athena, 2011.
Scienceray, Is Bee a Mathematician? - mathematics in nature.
FORMULA
a(n) = ceiling( 12^(1/4) * n ).
MATHEMATICA
f[n_] := Ceiling[ Sqrt[ Sqrt[12]]*n]; Array[f, 66, 0]
PROG
(Python)
from sympy import integer_nthroot
def A228295(n): return 0 if n == 0 else 1+integer_nthroot(12*n**4, 4)[0] # Chai Wah Wu, Mar 17 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Marcus du Sautoy and Robert G. Wilson v, Aug 19 2013
STATUS
approved