OFFSET
3,1
COMMENTS
The first term is the number of nets of a general regular triangular pyramid, not of a tetrahedron.
LINKS
Z. Lengvárszky and Rick Mabry, Enumerating nets of prism-like polyhedra, Acta Sci. Math. (Szeged) 83:3-4 (2017), 377-392.
FORMULA
a(n) = -1 + (1/2)*F(n) + (1/(2*n))*Sum_{j=1..n} (F(2*gcd(j,n)-1) + F(2*gcd(j,n)+1)), where F(n) is the usual n-th Fibonacci number. Simplified from link. - Rick Mabry, Apr 10 2023
MATHEMATICA
-1 + (1/2) Fibonacci[n] + (1/(2 n)) Sum[Fibonacci[2 GCD[j, n] - 1] + Fibonacci[2 GCD[j, n] + 1], {j, 1, n}] (* Rick Mabry, Apr 10 2023 *)
PROG
(PARI) a(n) = {sum(j=1, n, fibonacci(2*gcd(j, n) - 1) + fibonacci(2*gcd(j, n) + 1))/(2*n) + fibonacci(n)/2 - 1} \\ Andrew Howroyd, Apr 10 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Toshitaka Suzuki, Mar 22 2005
EXTENSIONS
More terms from Rick Mabry, Apr 10 2023
Definition changed by Rick Mabry, Apr 17 2023
STATUS
approved