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!)
A063970 a(1) = 2; for n>1, write down all divisors of the previous term in order of magnitude. 0
2, 12, 1234612, 1247915831639077814156283086536173061234612 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The next term has 3104 digits. - Harvey P. Dale, May 28 2017
LINKS
EXAMPLE
Divisors of a(3)={1, 2, 4, 79, 158, 316, 3907, 7814, 15628, 308653, 617306, 1234612}
MATHEMATICA
NestList[FromDigits[Flatten[IntegerDigits/@Divisors[#]]]&, 2, 4] (* Harvey P. Dale, May 28 2017 *)
PROG
(Python)
from sympy import divisors
def aupton(terms):
alst = [2]
for n in range(2, terms+1):
alst.append(int("".join(str(d) for d in divisors(alst[-1]))))
return alst
print(aupton(4)) # Michael S. Branicky, Feb 12 2021
CROSSREFS
Sequence in context: A038081 A291258 A027737 * A309864 A130769 A128033
KEYWORD
nonn,base
AUTHOR
Labos Elemer, Sep 05 2001
EXTENSIONS
Next term has more than 3000 decimal digits.
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 May 12 06:47 EDT 2024. Contains 372432 sequences. (Running on oeis4.)