OFFSET
1,1
COMMENTS
The last term of this sequence is a(10077) = 96709.
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..10077 (full sequence)
MAPLE
isA036329 := proc(n) local d: d:=ifactors(n)[2]: return `if`(not isprime(n) and add(length(d[j][1])*d[j][2], j=1..nops(d))=5, n, NULL): end: l:=[seq(isA036329(n), n=2..378)]; # Nathaniel Johnston, Jun 22 2011
MATHEMATICA
jpf5Q[n_]:=Total[Flatten[Table[IntegerLength[#[[1]]], {#[[2]]}]&/@ FactorInteger[ n]]]==5; Select[Range[400], CompositeQ[#]&&jpf5Q[#]&] (* Harvey P. Dale, Jan 09 2015 *)
CROSSREFS
KEYWORD
nonn,base,fini,full,easy
AUTHOR
Patrick De Geest, Dec 15 1998
STATUS
approved