login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A077350 Smallest number beginning with n and having exactly n divisors. 1
1, 2, 361, 46, 519885601, 63, 729, 88, 9025, 1053, 110462212541120451001, 126, 13841287201, 1458, 15376, 168, 1771091617586207101953855861006509233214261761, 180, 19267699140703639475173287301067237020969, 2000, 210681, 228352, 2384185791015625, 2430, 25091827216, 2625536, 27225, 28480 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Next (29-th) term is 1039^28 and contains 85 digits. - Max Alekseyev (maxale(AT)gmail.com), Feb 10 2005

EXAMPLE

a(6) = 63 = 3^2*7 has six divisors 1,3,7,9,21 and 63.

PROG

(PARI) { len10(n) = ceil(log(n+1)/log(10)); } { A077350(n) = if(isprime(n), forprime(i=2, 10^5, m=i^(n-1); if(m\10^(len10(m)-len10(n))==n, return(m))), for(d=0, 20, for(i=0, 10^d-1, m=n*10^d+i; if(numdiv(m)==n, return(m)))) ); return(0); } (Alekseyev)

CROSSREFS

Sequence in context: A172860 A164700 A062381 * A013506 A013512 A142532

Adjacent sequences:  A077347 A077348 A077349 * A077351 A077352 A077353

KEYWORD

base,nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Nov 05 2002

EXTENSIONS

Corrected and extended by Max Alekseyev (maxale(AT)gmail.com), Feb 10 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 00:09 EST 2012. Contains 205978 sequences.