[go: up one dir, main page]

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!)
Revision History for A317489 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A317489 Irregular triangle read by rows. For n >= 3 and 1 <= k <= floor(n/3), T(n,k) is the number of palindromic compositions of n into k parts of size at least 3.
(history; published version)
#26 by Bruno Berselli at Thu Sep 13 04:59:03 EDT 2018
STATUS

proposed

approved

#25 by Jean-François Alcover at Thu Sep 13 04:56:16 EDT 2018
STATUS

editing

proposed

#24 by Jean-François Alcover at Thu Sep 13 04:56:10 EDT 2018
MATHEMATICA

T[n_, k_] := If[Mod[n, 2] == 1 && Mod[k, 2] == 0, 0, Binomial[Quotient[n-1, 2] - k, Quotient[k-1, 2]]];

Table[T[n, k], {n, 3, 30}, {k, 1, Quotient[n, 3]}] // Flatten (* Jean-François Alcover, Sep 13 2018, from PARI *)

STATUS

approved

editing

#23 by N. J. A. Sloane at Mon Sep 10 05:06:31 EDT 2018
STATUS

proposed

approved

#22 by Christian Barrientos at Sat Sep 08 19:21:13 EDT 2018
STATUS

editing

proposed

#21 by Christian Barrientos at Sat Sep 08 19:20:31 EDT 2018
NAME

Irregular triangle read by rows. For n >= 3 and 1 <= k <= floor(n/3), T(n,k) is the number of symmetricpalindromic partitionscompositions of n into k parts of size at least 3 where order matters.

CROSSREFS

Row sums of the triangle equal A226916(n+74).

STATUS

proposed

editing

#20 by Jon E. Schoenfield at Fri Sep 07 23:09:36 EDT 2018
STATUS

editing

proposed

#19 by Jon E. Schoenfield at Fri Sep 07 23:09:33 EDT 2018
NAME

Irregular triangle read by rowrows. For n >= 3 and 1 <= k <= floor(n/3), T(n,k) is the number of symmetric partitions of n into k parts of size at least 3 where order matters.

STATUS

proposed

editing

#18 by Andrew Howroyd at Fri Sep 07 20:30:54 EDT 2018
STATUS

editing

proposed

Discussion
Fri Sep 07 20:32
Andrew Howroyd: I agree name should be palindromic compositions instead of symmetric partitions and then no need to state 'where order matters'
20:35
Andrew Howroyd: But it should be A226916(n+4) not n+7. (Don't forget this sequence starts at n=3)
#17 by Andrew Howroyd at Fri Sep 07 20:25:53 EDT 2018
PROG

(PARI) T(n, k)=if(n%2==1&&k%2==0, 0, binomial((n-1)\2-k, (k-1)\2)); \\ Andrew Howroyd, Sep 07 2018

STATUS

proposed

editing

Discussion
Fri Sep 07 20:30
Andrew Howroyd: A226916 is correct sequence for sums. Its a simple g.f and these are essentially sums of binomials. Also see Emeric Deutsh comment in A226916: number of palindromic compositions of n into {3,4,5,...} = A226916(n+4);

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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)