login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368359 Comma transform of Catalan numbers. 1
11, 12, 25, 51, 44, 21, 24, 91, 4, 21, 65, 62, 27, 2, 9, 53, 1, 4, 1, 6, 2, 9, 3, 1, 44, 21, 26, 42, 1, 83, 41, 95, 82, 8, 43, 21, 24, 41, 6, 2, 1, 3, 1, 5, 2, 8, 3, 1, 5, 21, 67, 62, 21, 4, 41, 26, 22, 41, 4, 21, 66, 62, 29, 53, 1, 5, 2, 8, 3, 1, 5, 2, 7, 3, 1, 4, 1, 7, 2, 1, 4, 1, 6, 2, 1, 4, 1, 6, 2, 1, 3, 1, 6, 2, 9, 3, 1, 5, 2, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A367360 for further information.
LINKS
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
Sequence in context: A042019 A221644 A022316 * A136433 A172173 A061760
KEYWORD
nonn,look,base
AUTHOR
N. J. A. Sloane, Jan 02 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 02:22 EDT 2024. Contains 372290 sequences. (Running on oeis4.)