OFFSET
0,3
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
EXAMPLE
Smallest numbers m such that a(m) = n, m = 1,..,9:
m | distinct terms in A008975(m,*) | a(m)
-----+----------------------------------+-------
0 | [1] | 1
2 | [1, 2] | 2
4 | [1, 4, 6] | 3
6 | [0, 1, 5, 6] | 4
17 | [0, 1, 6, 7, 8] | 5
12 | [0, 1, 2, 4, 5, 6] | 6
22 | [0, 1, 2, 3, 4, 5, 6] | 7
43 | [0, 1, 3, 4, 5, 6, 8, 9] | 8
23 | [0, 1, 3, 4, 5, 6, 7, 8, 9] | 9
47 | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] | 10
PROG
(Haskell)
import Data.List (nub)
a208280 = length . nub . a008975_row
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 25 2012
STATUS
approved