OFFSET
0,3
COMMENTS
A Palago tile is a hexagonal tile with four regions of alternating colors. See links for illustrations.
LINKS
Peter Kagey, Table of n, a(n) for n = 0..64
Code Golf Stack Exchange, Counting creatures on a hexagonal tiling
Peter Kagey, Example of for n = 2.
FORMULA
MATHEMATICA
a[n_] = (3^Binomial[n + 1, 2] +
3*3^((Binomial[n + 1, 2] - Ceiling[n/2])/2) +
If[Mod[n, 3] == 1, 0, 2*3^(Binomial[n + 1, 2]/3)])/6
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Kagey, Feb 06 2020
STATUS
approved