login

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 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A350513
Number of 2 X n rectangular Celtic knots (up to rotations and symmetries).
0
3, 21, 648, 15552, 404595, 10812528, 290993472, 7849029276, 211855234563, 5719493462076, 154420985682648, 4169319089851512, 112571188876032435, 3039418274650387848, 82064259021919140432, 2215734684425617523796, 59824833697843168341123, 1615270484817096465311316
OFFSET
1,1
LINKS
Jessica Connor and Nick Ward, Celtic Knot Theory
FORMULA
a(n) = (3^(3*n-2) + 3^((3*n-2)/2) + 3^(2*n-1) + 3^(3*n/2))/4 for even n > 2;
a(n) = (3^(3*n-2) + 3^((3*n-1)/2) + 3^(2*n-1) + 3^((3*n-1)/2))/4 for odd n.
a(n) = (3^(3*n-2) + 3^floor((3*n-1)/2) + 3^(2*n-1) + 3^floor(3*n/2))/4 for n <> 2.
PROG
(PARI) a(n) = if(n==2, 21, (3^(3*n-2) + 3^((3*n-1)\2) + 3^(2*n-1) + 3^(3*n\2))/4) \\ Andrew Howroyd, Jan 03 2022
CROSSREFS
Cf. A032120 (1 X n Celtic knots).
Sequence in context: A181003 A093549 A012044 * A098918 A001699 A291967
KEYWORD
nonn
AUTHOR
Philippe Gibone, Jan 02 2022
STATUS
approved