OFFSET
1,1
COMMENTS
Numbers with one 3, and zero or more 1s. - Daniel Forgues, Oct 09 2011
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Multiplicative Digital Root
FORMULA
There are n(n+1)/2 members up to 10^n, so a(n) is about 10^sqrt(2n).
a(m*(m-1)/2+j+1) = (10^m-1)/9 + 2*10^j for 0 <= j < m. - Robert Israel, Sep 27 2016
MAPLE
seq(seq((10^m-1)/9 + 2*10^j, j=0..m-1), m=1..10); # Robert Israel, Sep 27 2016
MATHEMATICA
Sort[Flatten[Table[FromDigits/@Permutations[Join[{3}, PadRight[{}, n, 1]]], {n, 0, 8}]]] (* Harvey P. Dale, Jul 16 2012 *)
PROG
(Python) # through 8-digit terms
print([int("1"*(d-i)+"3"+"1"*i) for d in range(8) for i in range(d+1)]) # Michael S. Branicky, Mar 13 2021
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Patrick De Geest, Sep 15 1998
STATUS
approved