OFFSET
1,11
COMMENTS
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000
Michael S. Branicky, Python Program
William Lowell Putman Mathematical Competition, Number 66, 2005, Problem A-1.
EXAMPLE
Illustration of initial terms:
1 = 2^0
2 = 2^1
3 = 3^1
4 = 2^2
5 = 2+3
6 = 2*3
7 = 2^2+3
8 = 2^3
9 = 3^2
10 = 2^2 + 2*3
11 = 2+3^2 = 2^3+3 (this is the first time there are 2 solutions)
12 = 2^2*3
13 = 2^2+3^2
14 = 2^3+2*3
...
PROG
(Python) # see linked program
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael S. Branicky and N. J. A. Sloane, Sep 21 2022
EXTENSIONS
More than the usual number of terms are shown, to distinguish this from similar sequences.
STATUS
approved