[go: up one dir, main page]

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

Revision History for A205338 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of length n+1 nonnegative integer arrays starting and ending with 0 with adjacent elements unequal but differing by no more than 5.
(history; published version)
#12 by Peter Luschny at Sat Apr 08 18:38:03 EDT 2017
STATUS

proposed

approved

#11 by Jon E. Schoenfield at Sat Apr 08 04:03:20 EDT 2017
STATUS

editing

proposed

#10 by Jon E. Schoenfield at Sat Apr 08 04:03:16 EDT 2017
NAME

Number of length n+1 nonnegative integer arrays starting and ending with 0 with adjacent elements unequal but differing by no more than 5.

COMMENTS

Column 5 of A205341.

EXAMPLE

Some solutions for n=5:

STATUS

proposed

editing

#9 by Michel Marcus at Sat Apr 08 01:55:08 EDT 2017
STATUS

editing

proposed

#8 by Michel Marcus at Sat Apr 08 01:55:00 EDT 2017
AUTHOR

R. H. Hardin , Jan 26 2012

STATUS

proposed

editing

#7 by Vladimir Kruchinin at Fri Apr 07 04:02:51 EDT 2017
STATUS

editing

proposed

#6 by Vladimir Kruchinin at Fri Apr 07 04:02:40 EDT 2017
FORMULA

a(n) = Sum_{i=1..n}((Sum_{l=0..i}(binomial(i,l)*(Sum_{j=0..(5*(i-l))/11}((-1)^j*binomial(i-l,j)*binomial(-l+5*(-l-2*j+i)-j+i-1,5*(-l-2*j+i)-j)))*(-1)^l))*a(n-i))/n, a(0)=1. - Vladimir Kruchinin, Apr 07 2017

PROG

(Maxima)

a(n):=if n=0 then 1 else sum((sum(binomial(i, l)*(sum((-1)^j*binomial(i-l, j)*binomial(-l+5*(-l-2*j+i)-j+i-1, 5*(-l-2*j+i)-j), j, 0, (5*(i-l))/11))*(-1)^l, l, 0, i))*a(n-i), i, 1, n)/n; /* Vladimir Kruchinin, Apr 07 2017 */

STATUS

approved

editing

#5 by Russ Cox at Sat Mar 31 12:37:05 EDT 2012
AUTHOR

_R. H. Hardin (rhhardin(AT)att.net) _ Jan 26 2012

Discussion
Sat Mar 31
12:37
OEIS Server: https://oeis.org/edit/global/875
#4 by Ron Hardin at Thu Jan 26 10:46:23 EST 2012
STATUS

editing

approved

#3 by Ron Hardin at Thu Jan 26 10:46:19 EST 2012
LINKS

R. H. Hardin, <a href="/A205338/b205338.txt">Table of n, a(n) for n = 1..210</a>