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!)
A300063 Heinz numbers of integer partitions of odd numbers. 44
2, 5, 6, 8, 11, 14, 15, 17, 18, 20, 23, 24, 26, 31, 32, 33, 35, 38, 41, 42, 44, 45, 47, 50, 51, 54, 56, 58, 59, 60, 65, 67, 68, 69, 72, 73, 74, 77, 78, 80, 83, 86, 92, 93, 95, 96, 97, 98, 99, 103, 104, 105, 106, 109, 110, 114, 119, 122, 123, 124, 125, 126, 127 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
LINKS
EXAMPLE
15 is the Heinz number of (3,2), which has odd weight, so 15 belongs to the sequence.
Sequence of odd-weight partitions begins: (1) (3) (2,1) (1,1,1) (5) (4,1) (3,2) (7) (2,2,1) (3,1,1) (9) (2,1,1,1) (6,1).
MAPLE
a:= proc(n) option remember; local k; for k from 1+
`if`(n=1, 0, a(n-1)) while add(numtheory[pi]
(i[1])*i[2], i=ifactors(k)[2])::even do od; k
end:
seq(a(n), n=1..100); # Alois P. Heinz, May 22 2018
MATHEMATICA
Select[Range[200], OddQ[Total[Cases[FactorInteger[#], {p_, k_}:>k*PrimePi[p]]]]&]
CROSSREFS
Complement of A300061.
Sequence in context: A059009 A214642 A026179 * A230902 A243680 A280381
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 23 2018
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 April 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)