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”).

A026556
a(n) = T(n, n-3), T given by A026552. Also a(n) = number of integer strings s(0), ..., s(n) counted by T, such that s(n) = 3.
18
1, 3, 8, 24, 52, 156, 319, 954, 1910, 5696, 11304, 33648, 66514, 197778, 390266, 1159844, 2286996, 6795576, 13397075, 39809076, 78489235, 233262931, 460030947, 1367463642, 2697786052, 8021305890, 15830906756, 47082494816
OFFSET
3,2
LINKS
FORMULA
a(n) = A026552(n, n-3).
MATHEMATICA
T[n_, k_]:= T[n, k]= If[k==0 || k==2*n, 1, If[k==1 || k==2*n-1, Floor[(n+2)/2], If[EvenQ[n], T[n-1, k-2] + T[n-1, k] + T[n-1, k-1], T[n-1, k-2] + T[n-1, k]]]]; (* T=A026552 *)
Table[T[n, n-3], {n, 3, 40}] (* G. C. Greubel, Dec 17 2021 *)
PROG
(Sage)
@CachedFunction
def T(n, k): # T = A026552
if (k==0 or k==2*n): return 1
elif (k==1 or k==2*n-1): return (n+2)//2
elif (n%2==0): return T(n-1, k) + T(n-1, k-1) + T(n-1, k-2)
else: return T(n-1, k) + T(n-1, k-2)
[T(n, n-3) for n in (3..40)] # G. C. Greubel, Dec 17 2021
KEYWORD
nonn
STATUS
approved