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!)
A229153 Numbers of the form c * m^2, where m > 0 and c is composite and squarefree. 7
6, 10, 14, 15, 21, 22, 24, 26, 30, 33, 34, 35, 38, 39, 40, 42, 46, 51, 54, 55, 56, 57, 58, 60, 62, 65, 66, 69, 70, 74, 77, 78, 82, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 102, 104, 105, 106, 110, 111, 114, 115, 118, 119, 120, 122, 123, 126, 129, 130, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 145, 146, 150 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Subsequence of A048943. According to Gerard P. Michon, one of the criteria for N to belong to A048943 is that it has at least two prime factors with odd multiplicities. By definition, the composite factor c in any term of A229153 conforms to this criterion.
From a(1) to a(63), identical to the given terms of A119847, except for the single term a(55) = 120.
LINKS
PROG
(PARI) iscomposite(n)={if(!isprime(n)&&n!=1, return(1)); }
test(n)={if(iscomposite(core(n)), return(1)); }
for(n=1, 200, if(test(n)==1, print1(n", ")))
(PARI) lista(nn) = {for(n=1, nn, if(!ispseudoprime(core(n)) && !issquare(n), print1(n, ", "))); } \\ Altug Alkan, Feb 04 2016
(PARI) list(lim)=my(v=List()); forsquarefree(c=6, lim\=1, if(#c[2]~ > 1, for(m=1, sqrtint(lim\c[1]), listput(v, c[1]*m^2)))); Set(v) \\ Charles R Greathouse IV, Jan 09 2022
CROSSREFS
Complement of A265640.
Sequence in context: A339438 A268376 A067582 * A119847 A279458 A119899
KEYWORD
nonn
AUTHOR
Chris Boyd, Sep 15 2013
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 16 10:45 EDT 2024. Contains 371709 sequences. (Running on oeis4.)