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!)
A081811 If n = p_1^e_1 * ... * p_k^e_k, p_1 < ... < p_k primes, then a(n) = min{ p_i*e_i }. 3
0, 2, 3, 4, 5, 2, 7, 6, 6, 2, 11, 3, 13, 2, 3, 8, 17, 2, 19, 4, 3, 2, 23, 3, 10, 2, 9, 4, 29, 2, 31, 10, 3, 2, 5, 4, 37, 2, 3, 5, 41, 2, 43, 4, 5, 2, 47, 3, 14, 2, 3, 4, 53, 2, 5, 6, 3, 2, 59, 3, 61, 2, 6, 12, 5, 2, 67, 4, 3, 2, 71, 6, 73, 2, 3, 4, 7, 2, 79, 5, 12, 2, 83, 3, 5, 2, 3, 6, 89, 2, 7, 4, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
a:= n-> `if`(n=1, 0, min(seq(i[1]*i[2], i=ifactors(n)[2]))):
seq(a(n), n=1..100); # Alois P. Heinz, Jul 19 2020
PROG
(PARI) a(n)=local(f); if(n==1, 0, f=factor(n); vecmin(vector(matsize(f)[1], k, f[k, 1]*f[k, 2])))
CROSSREFS
Cf. A081810 (with max).
Sequence in context: A354749 A244734 A230089 * A304181 A034684 A323130
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 10 2003
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 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)