[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 A287144 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A287144 Number of partitions of n such that the absolute difference between any part i and the sum of all other parts not larger than i is not larger than two.
(history; published version)
#18 by Alois P. Heinz at Fri Dec 11 12:56:22 EST 2020
STATUS

proposed

approved

#17 by Jean-François Alcover at Fri Dec 11 09:51:19 EST 2020
STATUS

editing

proposed

#16 by Jean-François Alcover at Fri Dec 11 09:51:15 EST 2020
MATHEMATICA

b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1] + If[i > n || Abs[i - (n - i)] > 2, 0, b[n - i, i]]]];

a[n_] := b[n, n];

a /@ Range[0, 100] (* Jean-François Alcover, Dec 11 2020, after Alois P. Heinz *)

STATUS

approved

editing

#15 by Alois P. Heinz at Sun Jun 11 08:50:42 EDT 2017
STATUS

editing

approved

#14 by Alois P. Heinz at Sun Jun 11 08:50:19 EDT 2017
FORMULA

a(2^n-1) = A265278(n) for n>0.

a(2^n) = A052542(n).

a(2^n+1) = A182780(n-1) for n>0.

CROSSREFS

Cf. A002487, A052542, A182780, A265278, A287146.

STATUS

approved

editing

#13 by OEIS Server at Sat May 20 21:10:08 EDT 2017
LINKS

Alois P. Heinz, <a href="/A287144/b287144_1.txt">Table of n, a(n) for n = 0..16384</a>

#12 by Alois P. Heinz at Sat May 20 21:10:08 EDT 2017
STATUS

editing

approved

Discussion
Sat May 20 21:10
OEIS Server: Installed new b-file as b287144.txt.  Old b-file is now b287144_1.txt.
#11 by Alois P. Heinz at Sat May 20 21:10:03 EDT 2017
LINKS

Alois P. Heinz, <a href="/A287144/b287144_1.txt">Table of n, a(n) for n = 0..1000016384</a>

STATUS

approved

editing

#10 by Alois P. Heinz at Sat May 20 20:18:44 EDT 2017
STATUS

editing

approved

#9 by Alois P. Heinz at Sat May 20 20:18:41 EDT 2017
KEYWORD

nonn,look,new

STATUS

approved

editing

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 30 07:09 EDT 2024. Contains 375532 sequences. (Running on oeis4.)