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”).

A257646
Index of first row of triangle A103284 containing n.
2
0, 2, 3, 4, 4, 5, 5, 9, 5, 11, 6, 13, 6, 7, 16, 6, 18, 7, 20, 7, 22, 23, 24, 7, 26, 27, 9, 29, 7, 8, 32, 33, 34, 8, 10, 37, 38, 8, 40, 41, 42, 43, 44, 8, 46, 47, 48, 49, 9, 51, 52, 53, 8, 12, 56, 57, 58, 59, 9, 61, 62, 63, 64, 9, 13, 67, 68, 69, 70, 71, 72
OFFSET
1,2
COMMENTS
a(n) <= n + 1.
LINKS
PROG
(Haskell)
import Data.List (findIndex); import Data.Maybe (fromJust)
a257646 n = fromJust $ findIndex (elem n) a103284_tabl
CROSSREFS
Sequence in context: A049987 A343397 A270832 * A051898 A092032 A058222
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 19 2015
STATUS
approved