The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A104974 A Fredholm-Rueppel triangle. 2
1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Sequence matrix for A036987(n+1).
Riordan array ( (Sum_{k>=0} x^(2^k)/x^2) - 1/x, x).
Diagonal sums are A070939(n+1), with interpolated zeros.
Inverse is A104975.
LINKS
FORMULA
T(n, k) = A000108(n+1-k) mod 2. [Corrected by R. J. Mathar, Apr 21 2021]
Sum_{k=0..n} T(n, k) = A000523(n+1).
EXAMPLE
Triangle begins as:
1;
0, 1;
1, 0, 1;
0, 1, 0, 1;
0, 0, 1, 0, 1;
0, 0, 0, 1, 0, 1;
1, 0, 0, 0, 1, 0, 1;
0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1;
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1;
MAPLE
A104974 := proc(n, k)
modp(A000108(n+1-k), 2);
end proc:
seq(seq( A104974(n, k), k=0..n), n=0..15); # R. J. Mathar, Apr 21 2021
MATHEMATICA
Table[Mod[CatalanNumber[n-k+1], 2], {n, 0, 15}, {k, 0, n}]//Flatten (* G. C. Greubel, Jun 08 2021 *)
PROG
(Magma) [(Catalan(n-k+1) mod 2): k in [0..n], n in [0..15]]; // G. C. Greubel, Jun 08 2021
(Sage) flatten([[mod(catalan_number(n-k+1), 2) for k in (0..n)] for n in (0..15)]) # G. C. Greubel, Jun 08 2021
CROSSREFS
Cf. A000523 (row sums), A036987, A070939, A104975.
Sequence in context: A294878 A023960 A129686 * A266719 A024711 A286990
KEYWORD
easy,nonn,tabl
AUTHOR
Paul Barry, Mar 30 2005
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 June 12 14:48 EDT 2024. Contains 373331 sequences. (Running on oeis4.)