[go: up one dir, main page]

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

A049646
a(n) = T(n,n+1), array T given by A049639.
1
0, 1, 3, 4, 5, 7, 9, 11, 13, 17, 21, 23, 25, 31, 37, 41, 45, 51, 57, 61, 65, 75, 85, 89, 93, 105, 117, 123, 129, 137, 145, 153, 161, 177, 193, 199, 205, 223, 241, 249, 257, 269, 281, 291, 301, 323, 345, 353, 361, 381, 401, 413, 425, 443, 461, 473, 485, 513, 541, 549, 557
OFFSET
0,3
LINKS
MATHEMATICA
a[0 | 1, 0 | 1] = 0; a[0 | 1, _] = a[_, 0 | 1] = 1; a[i_, j_] := Module[{slopes, cnt}, slopes = Union@Flatten@Table[(k - j)/(h - i), {h, 0, i - 1}, {k, 0, j - 1}]; cnt[slope_] := Count[Flatten[Table[{h, k}, {h, 0, i - 1}, {k, 0, j - 1}], 1], {h_, k_} /; (k - j)/(h - i) == slope]; Count[cnt /@ slopes, c_ /; c >= 2] + 2]; Table[a[n, n + 1], {n, 0, 25}] (* G. C. Greubel, Dec 07 2017 *)
CROSSREFS
Cf. A049639.
Sequence in context: A096262 A308168 A193339 * A033556 A219044 A032507
KEYWORD
nonn
EXTENSIONS
Terms a(39)-a(60) added by G. C. Greubel, Dec 07 2017
STATUS
approved