login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A355480 a(n) is the number of distinct, hexagonal-tiled regions after the n-th step of the walk described in A355478. 3
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,37
COMMENTS
See A355478 for additional information and animations.
LINKS
EXAMPLE
In the following diagrams the walk is shown at the end of the n-th step, together with the position of the bee (*).
.
n 0 1 8 28 60
a(n) 0 0 0 1 2
__
__/ 2\*_
* __* __ __ / 2\__/ \__
\ \__ \__/ 2\__ \__
/ / \__ \__/ 2\__/ \__
\ \*_ \__ \__/ \__ \__
/ / 1\ \ / 1\ \
\ \__/ __/ \__/ __/
/ / __/ / __/
\* \__/ \__/
.
MATHEMATICA
A355480[nterms_]:=Module[{a={0}, walk={{0, 0}}, angle=0, cells}, Do[AppendTo[walk, AngleVector[Last[walk], angle+=If[PrimeQ[n], -1, 1]Pi/3]]; cells=FindCycle[Graph[MapApply[UndirectedEdge, Partition[walk, 2, 1]]], {6}, All]; AppendTo[a, Length[ConnectedComponents[Graph[Flatten[cells]]]]], {n, nterms-1}]; Take[a, nterms]];
A355480[100]
CROSSREFS
Sequence in context: A098391 A071702 A225541 * A076303 A339276 A343356
KEYWORD
nonn,walk
AUTHOR
Paolo Xausa, Jul 21 2022
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 December 9 23:06 EST 2023. Contains 367696 sequences. (Running on oeis4.)