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!)
A038841 Concatenation of prime factors of n is a cube. 0
14, 129, 203, 394, 403, 7654, 12977, 14055, 19582, 46595, 48230, 53962, 62545, 84139, 84769, 95655, 100094, 192364, 211841, 250630, 267051, 279385, 449377, 549601, 655945, 705274, 713530, 827359, 841033, 879203, 1130825, 1179435, 1236865 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Arguably, 1 should be included in this sequence.
Prime factors taken with multiplicity. - Harvey P. Dale, Nov 28 2014
LINKS
EXAMPLE
62545=5*7*1787 and 571787=83^3.
MATHEMATICA
cpfQ[n_]:=IntegerQ[Surd[FromDigits[Flatten[IntegerDigits/@Flatten[ Table[#[[1]], {#[[2]]}]&/@FactorInteger[n]]]], 3]]; Select[Range[1250000], cpfQ] (* Harvey P. Dale, Nov 28 2014 *)
PROG
(PARI) catpf(n)=my(f=factor(n), s=""); for(i=1, #f[, 1], for(j=1, f[i, 2], s=Str(s, f[i, 1]))); eval(s)
for(n=2, 1e7, if(ispower(catpf(n), 3), print1(n", ")))
CROSSREFS
Sequence in context: A208047 A301379 A222571 * A240189 A021354 A208427
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Corrected and extended; also program from Charles R Greathouse IV, Apr 28 2010
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 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)