[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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

Showing entries 1-10 | older changes
a(n) is the smallest number such that the product of its decimal digits equals n^n, or 0 if no solutions exist.
(history; published version)
#22 by Giovanni Resta at Mon Aug 14 03:26:22 EDT 2017
STATUS

reviewed

approved

#21 by Joerg Arndt at Mon Aug 14 03:12:19 EDT 2017
STATUS

proposed

reviewed

#20 by Chai Wah Wu at Sun Aug 13 17:43:52 EDT 2017
STATUS

editing

proposed

#19 by Chai Wah Wu at Sun Aug 13 17:43:40 EDT 2017
PROG

return 0 if max(pf) > 7 else int(''.join(sorted(''.join(str(a)*(n*b) for a, b in pf.items()).replace('222', '8').replace('22', '4').replace('33', '9')))) # Chai Wah Wu, Aug 13 2017

#18 by Chai Wah Wu at Sun Aug 13 17:43:14 EDT 2017
PROG

(Python)

from sympy import factorint

def A068187(n):

if n == 1:

return 1

pf = factorint(n)

return 0 if max(pf) > 7 else int(''.join(sorted(''.join(str(a)*(n*b) for a, b in pf.items()).replace('222', '8').replace('22', '4').replace('33', '9')))) # Chai Wah Wu, Aug 13 2017

STATUS

approved

editing

#17 by Joerg Arndt at Sun Aug 13 03:42:03 EDT 2017
STATUS

proposed

approved

#16 by Michel Marcus at Sun Aug 13 02:37:03 EDT 2017
STATUS

editing

proposed

#15 by Michel Marcus at Sun Aug 13 02:36:15 EDT 2017
DATA

1, 4, 39, 488, 55555, 88999, 7777777, 88888888, 999999999, 25555555555888, 0, 88888888999999, 0, 4777777777777778888, 35555555555555559999999, 2888888888888888888888, 0, 888888999999999999999999, 0, 2555555555555555555558888888888888, 37777777777777777777779999999999

STATUS

approved

editing

Discussion
Sun Aug 13
02:37
Michel Marcus: added 2 terms from bfile ; A067735 and A067736 xrefs were not relevant here
#14 by OEIS Server at Sun Aug 13 02:31:42 EDT 2017
LINKS

Chai Wah Wu, <a href="/A068187/b068187_1.txt">Table of n, a(n) for n = 1..200</a>

#13 by Michel Marcus at Sun Aug 13 02:31:42 EDT 2017
STATUS

reviewed

approved

Discussion
Sun Aug 13
02:31
OEIS Server: Installed new b-file as b068187.txt.  Old b-file is now b068187_1.txt.