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!)
A236107 Nonprimes whose divisors are partition numbers. 6
1, 15, 22, 77 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
By definition all terms are partition numbers.
Conjecture: no terms exist beyond 77. - Jon E. Schoenfield, Feb 05 2014
LINKS
EXAMPLE
15 is in the sequence because 15 is a nonprime number and the divisors of 15 are 1, 3, 5, 15, which are also partition numbers.
MATHEMATICA
nmax = 1000;
pp = PartitionsP[Range[nmax]];
selQ[n_] := Module[{dd = Divisors[n]}, Intersection[pp, dd] == dd];
Select[Range[nmax], !PrimeQ[#] && selQ[#]&] (* Jean-François Alcover, Apr 09 2020 *)
CROSSREFS
Sequence in context: A109288 A018889 A186525 * A065728 A344134 A241253
KEYWORD
nonn,more
AUTHOR
Omar E. Pol, Jan 22 2014
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 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)