login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154797 Odd partition numbers of even numbers. 4
1, 5, 11, 77, 135, 231, 385, 627, 1575, 8349, 17977, 26015, 75175, 147273, 281589, 386155, 526823, 966467, 3087735, 5392783, 9289091, 20506255, 44108109, 56634173, 72533807, 241265379, 304801365, 952050665, 1482074143, 6620830889 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Odd numbers in A058696.

EXAMPLE

Contribution from Emeric Deutsch (deutsch(AT)duke.poly.edu), Aug 02 2009: (Start)

The odd number 5 is in the sequence as the partition number of the even number 4 (4,31,22,211,1111).

(End)

MAPLE

aa:= proc(n, i) if n=0 then 1 elif n<0 or i=0 then 0 else aa(n, i):= aa(n, i-1) +aa(n-i, i) fi end: a:= proc(n) local k; if n>1 then a(n-1) fi; for k from `if`(n=1, 0, b(n-1)+2) by 2 while irem (aa(k, k), 2)=0 do od; b(n):= k; aa(k, k) end: seq (a(n), n=1..40); [From Alois P. Heinz (heinz(AT)hs-heilbronn.de), Jul 28 2009]

with(combinat): a := proc (n) if `mod`(numbpart(2*n), 2) = 1 then numbpart(2*n) else end if end proc: seq(a(n), n = 0 .. 70); [From Emeric Deutsch (deutsch(AT)duke.poly.edu), Aug 02 2009]

CROSSREFS

Cf. A000041, A005843, A058696, A154795, A154796, A154798.

Sequence in context: A175207 A067890 A192436 * A161852 A002359 A090518

Adjacent sequences:  A154794 A154795 A154796 * A154798 A154799 A154800

KEYWORD

nonn

AUTHOR

Omar E. Pol (info(AT)polprimos.com), Jan 26 2009

EXTENSIONS

More terms from Alois P. Heinz (heinz(AT)hs-heilbronn.de), Jul 28 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 06:08 EST 2012. Contains 205860 sequences.