The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A177493 Products of cubes of 2 or more distinct primes. 1
216, 1000, 2744, 3375, 9261, 10648, 17576, 27000, 35937, 39304, 42875, 54872, 59319, 74088, 97336, 132651, 166375, 185193, 195112, 238328, 274625, 287496, 328509, 343000, 405224, 456533, 474552, 551368, 614125, 636056, 658503, 753571, 804357, 830584, 857375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A120944(n)^3. - R. J. Mathar, Dec 06 2010
EXAMPLE
216 = 2^3 * 3^3.
9261 = 3^3 * 7^3.
27000 = 2^3 * 3^3 * 5^3.
MATHEMATICA
f1[n_]:=Length[Last/@FactorInteger[n]]; f2[n_]:=Union[Last/@FactorInteger[n]]; lst={}; Do[If[f1[n]>1&&f2[n]=={3}, AppendTo[lst, n]], {n, 0, 9!}]; lst
Reap[Do[{p, e}=Transpose[FactorInteger[n]]; If[Length[p]>1 && Union[e]=={3}, Sow[n]], {n, 343000}]][[2, 1]]
PROG
(PARI) [k^3 | k<-[1..100], k>1 && !isprime(k) && issquarefree(k)] \\ Andrew Howroyd, Jan 14 2020
CROSSREFS
Sequence in context: A109399 A111029 A124581 * A162142 A233859 A233853
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition corrected by R. J. Mathar, Dec 06 2010
Terms a(25) and beyond from Andrew Howroyd, Jan 14 2020
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 May 28 18:29 EDT 2024. Contains 372919 sequences. (Running on oeis4.)