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

A169943
Second entry in row n of triangle in A169940.
0
1, 0, 3, 4, 7, 8, 21, 20, 53, 56, 89, 112, 197, 220, 397, 456, 711, 850, 1347, 1428, 2303, 2642, 3777, 4636, 6693, 7550, 11109, 12876, 17965, 21000, 29207, 32952, 46263, 53372, 71069, 82660, 111877, 126042, 172461, 195898, 256577
OFFSET
2,3
COMMENTS
Wanted: a recurrence. Are any of A169940-A169954 related to any other entries in the OEIS?
FORMULA
a(n) = A169953(n) - A169953(n-1) for n>2.
MATHEMATICA
(* Very slow *) a[n_] := Module[{dd, xx, mm}, dd = Join[{1}, PadLeft[ IntegerDigits[#, 2], n - 1], {1}] & /@ Range[0, 2^(n - 1) - 1]; xx = (((x^Range[n, 0, -1]).#) & /@ dd)^2 // Expand; mm = Max[ CoefficientList[ #, x]] & /@ xx; Count[mm, 3]]; Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 2, 20}] (* Jean-François Alcover, Oct 10 2017 *)
CROSSREFS
Related to thickness: A169940-A169954, A061909.
Sequence in context: A244930 A130420 A214096 * A215110 A101715 A249751
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 01 2010
EXTENSIONS
a(15)-a(30) from Nathaniel Johnston, Nov 12 2010
a(31)-a(42) from Andrew Howroyd, Jul 09 2017
STATUS
approved