OFFSET
0,1
COMMENTS
See A367360 for further information.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 0..10000
MAPLE
C:= proc(n) option remember; binomial(2*n, n)/(n+1) end:
a:= n-> parse(cat(""||(C(n))[-1], ""||(C(n+1))[1])):
seq(a(n), n=0..99); # Alois P. Heinz, Jan 03 2024
PROG
(Python)
from math import comb
def A368359(n): return 10*(comb(n<<1, n)//(n+1)%10)+int(str(comb(n+1<<1, n+1)//(n+2))[0]) # Chai Wah Wu, Jan 03 2024
(Python)
from itertools import count, islice, pairwise
def S(): # generator of Catalan numbers as strings
C = 1
for n in count(0):
yield str(C)
C = C*(4*n+2)//(n+2)
def agen(): yield from (int(t[-1]+u[0]) for t, u in pairwise(S()))
print(list(islice(agen(), 100))) # Michael S. Branicky, Jan 04 2024
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Jan 02 2024
STATUS
approved