[go: up one dir, main page]

login
Revision History for A062999 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Numbers k with property that the sum of the digits of k is strictly less than the product of the digits of k.
(history; published version)
#10 by Alois P. Heinz at Thu Jun 28 02:59:35 EDT 2018
STATUS

proposed

approved

#9 by Jon E. Schoenfield at Thu Jun 28 00:56:50 EDT 2018
STATUS

editing

proposed

#8 by Jon E. Schoenfield at Thu Jun 28 00:56:48 EDT 2018
NAME

Numbers n k with property that the sum of the digits of n k is strictly less than the product of the digits of nk.

LINKS

Harry J. Smith, <a href="/A062999/b062999.txt">Table of n, a(n) for n = 1,...,1000</a>

PROG

(PARI) SumD(x)= { s=0; while (x>9, s+=x-10*(x\10); x\=10); return(s + x) } ProdD(x)= { p=1; while (x>9, p*=(x-10*(x\10)); x\=10); return(p*x) } { n=0; for (a=1, 10^9, if (SumD(a) < ProdD(a), write("b062999.txt", n++, " ", a); if (n==1000, break)) ) } [From _\\ _Harry J. Smith_, Aug 15 2009]

STATUS

approved

editing

#7 by Charles R Greathouse IV at Fri Oct 12 14:38:23 EDT 2012
MATHEMATICA

Select[Range[128], (Plus @@ IntegerDigits[ # ]) < (Times @@ IntegerDigits[ # ]) &] (_Alonso Delarte (alonso.delarte(AT)gmail.com), del Arte_, May 16 2005)

Discussion
Fri Oct 12
14:38
OEIS Server: https://oeis.org/edit/global/1835
#6 by Russ Cox at Fri Mar 30 18:51:34 EDT 2012
AUTHOR

_Henry Bottomley (se16(AT)btinternet.com), _, Jun 29 2001

Discussion
Fri Mar 30
18:51
OEIS Server: https://oeis.org/edit/global/247
#5 by Russ Cox at Fri Mar 30 17:24:21 EDT 2012
PROG

(PARI) SumD(x)= { s=0; while (x>9, s+=x-10*(x\10); x\=10); return(s + x) } ProdD(x)= { p=1; while (x>9, p*=(x-10*(x\10)); x\=10); return(p*x) } { n=0; for (a=1, 10^9, if (SumD(a) < ProdD(a), write("b062999.txt", n++, " ", a); if (n==1000, break)) ) } [From _Harry J. Smith (hjsmithh(AT)sbcglobal.net), _, Aug 15 2009]

Discussion
Fri Mar 30
17:24
OEIS Server: https://oeis.org/edit/global/133
#4 by N. J. A. Sloane at Thu Nov 11 07:34:06 EST 2010
LINKS

Harry J. Smith, <a href="/A062999/b062999.txt">Table of n, a(n) for n=1,...,1000</a>

KEYWORD

base,nonn,new

#3 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
LINKS

Harry J. Smith, <a href="b062999.txt">Table of n, a(n) for n=1,...,1000</a>

PROG

(PARI) SumD(x)= { s=0; while (x>9, s+=x-10*(x\10); x\=10); return(s + x) } ProdD(x)= { p=1; while (x>9, p*=(x-10*(x\10)); x\=10); return(p*x) } { n=0; for (a=1, 10^9, if (SumD(a) < ProdD(a), write("b062999.txt", n++, " ", a); if (n==1000, break)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 15 2009]

KEYWORD

base,nonn,new

#2 by N. J. A. Sloane at Tue Jul 19 03:00:00 EDT 2005
NAME

Sum Numbers n with property that the sum of the digits of n is strictly less than the product of the digits of n.

MATHEMATICA

Select[Range[128], (Plus @@ IntegerDigits[ # ]) < (Times @@ IntegerDigits[ # ]) &] (Alonso Delarte (alonso.delarte(AT)gmail.com), May 16 2005)

KEYWORD

base,nonn,new

#1 by N. J. A. Sloane at Fri May 16 03:00:00 EDT 2003
NAME

Sum of digits is strictly less than product of digits.

DATA

23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 124, 125, 126, 127

OFFSET

1,1

KEYWORD

base,nonn

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Jun 29 2001

STATUS

approved