OFFSET
1,2
COMMENTS
This is a variant of the stepping stone sequence (A337663), where now the board is a hexagonal grid.
Start with an infinite hexagonal grid. Each cell has six neighbors. Place n 1's anywhere. Now place the numbers 2, 3, ..., m in order, subject to the rule that when you place k, the sum of its neighbors must equal k. Then a(n) is the maximum m that can be achieved.
LINKS
Jeremy Rebenstock, Illustration for a(2)
Jeremy Rebenstock, Illustration for a(5) [Corrected by Al Zimmermann, Nov 27 2022]
Jeremy Rebenstock, Illustration for lower bound
FORMULA
a(n) >= 5n - 4. This is seen by constructing the pattern linked above, titled "Illustration for lower bound".
EXAMPLE
Found by code compiled by Hugo van der Sanden and Thomas Ladouceur, see links titled: "Illustration for a(2)" and "Illustration for a(5)".
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Jeremy Rebenstock and Thomas Ladouceur, Mar 12 2021
STATUS
approved