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!)
A257652 The semiprimes which set new records for the sum of their decimal digits. 1
4, 6, 9, 38, 39, 49, 69, 169, 278, 289, 299, 489, 589, 689, 699, 799, 899, 2899, 3899, 4989, 5899, 5999, 6999, 7999, 9899, 19999, 29999, 48999, 58999, 68999, 69999, 88999, 99899, 299899, 398999, 589989, 589999, 689999, 798999, 889999, 899999, 2899999, 3899999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The semiprimes that set new records in A175013. New records of digit sums of 4, 6, 9, 11, 12, 13, 15, 16, 17,.. are set by the semiprimes 4, 6, 9, 38, 39, 49, 69,...
LINKS
EXAMPLE
a(4) = 38 = 2 * 19, which is a semiprime with sum of digits = 3 + 8 = 11.
a(5) = 39 = 3 * 13, which is a semiprime with sum of digits = 3 + 9 = 12. Since 12 > 11, 38 and 39 are in list.
MATHEMATICA
t = {}; s = 0; Do[If[(x = Total[IntegerDigits[n]]) > s && PrimeOmega[n] == 2, AppendTo[t, n]; s = x], {n, 1000000}]; t
DeleteDuplicates[{#, Total[IntegerDigits[#]]}&/@Select[Range[4*10^6], PrimeOmega[#] == 2&], GreaterEqual[ #1[[2]], #2[[2]]]&][[;; , 1]] (* Harvey P. Dale, Apr 12 2024 *)
CROSSREFS
Subsequence of A213653.
Sequence in context: A303699 A292153 A175459 * A107665 A085733 A242751
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Jul 25 2015
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 July 19 22:16 EDT 2024. Contains 374440 sequences. (Running on oeis4.)