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!)
A085890 Highly composite numbers (A002473) using digits in descending order. 1 is followed by a zero. 1

%I #14 Sep 23 2023 04:30:34

%S 1,2,3,4,5,6,7,8,9,10,21,32,54,98,210,432

%N Highly composite numbers (A002473) using digits in descending order. 1 is followed by a zero.

%C No more terms < 10^1000. Probably no more terms. - _David Wasserman_, Feb 10 2005

%e 432 is a member as 432= 2^4*3^3.

%o (PARI) hcn(n) = while (!(n%2), n \=2); while (!(n%3), n \=3); while (!(n%5), n \=5); while (!(n%7), n \=7); n == 1;

%o for (i = 0, 1000, for (j = 1, 9, n = sum(k = j - i, j, (k%10)*10^(i - j + k)); if (hcn(n), print1(n, ", ")))); /* _David Wasserman_, Feb 10 2005 */

%Y Cf. A002473, A085889.

%K base,nonn

%O 1,2

%A _Amarnath Murthy_ and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jul 10 2003

%E More terms from _David Wasserman_, Feb 10 2005

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 6 08:50 EDT 2024. Contains 372292 sequences. (Running on oeis4.)