OFFSET
0,2
COMMENTS
Central coefficients of triangle A210341.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..60
Vaclav Kotesovec, Non-attacking chess pieces, 6ed, 2013, p. 69, 380.
FORMULA
a(n) = F(n+2)^n, where F(n) = A000045(n) is the n-th Fibonacci number.
a(n) ~ phi^2/sqrt(5) phi^n^2. [Charles R Greathouse IV, Mar 28 2012]
EXAMPLE
Neighbors for n=4:
o o o o
| | | |
| | | |
o o o o
| | | |
| | | |
o o o o
| | | |
| | | |
o o o o
MATHEMATICA
Table[Fibonacci[n+2]^n, {n, 0, 100}]
PROG
(Maxima) makelist(fib(n+2)^n, n, 0, 14);
(PARI) a(n)=fibonacci(n+2)^n \\ Charles R Greathouse IV, Mar 28 2012
(Magma) [Fibonacci(n+2)^n: n in [0..13]]; // Bruno Berselli, Mar 28 2012
CROSSREFS
Cf. circle A000204, line A000045, arrays: ne-sw nw-se A067965, e-w ne-sw nw-se A067963, n-s nw-se A067964, e-w n-s nw-se A066864, e-w ne-sw n-s nw-se A063443, e-w n-s A006506, nw-se A067962, toruses: bare A002416, ne-sw nw-se A067960, ne-sw n-s nw-se A067959, e-w ne-sw n-s nw-se A067958, n-s A067961, e-w n-s A027683, e-w ne-sw n-s A066866.
KEYWORD
nonn,nice
AUTHOR
R. H. Hardin, Feb 02 2002
EXTENSIONS
Edited by Dean Hickerson, Feb 15 2002
STATUS
approved