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

A111617
Where A111616(n)=2.
1
6, 10, 18, 20, 22, 30, 34, 36, 38, 44, 50, 52, 56, 58, 62, 72, 78, 84, 86, 90, 92, 96, 98, 100, 102, 104, 110, 116, 134
OFFSET
1,1
MATHEMATICA
f[n_] := f[n] = Block[{a}, a[0] = 1; a[l_] := a[l] = Block[{k = 1, s = Sum[ a[i]*x^i, {i, 0, l - 1}]}, While[ IntegerQ[ Last[ CoefficientList[ Series[(s + k*x^l)^(1/n), {x, 0, l}], x]]] != True, k++ ]; k]; Table[a[j], {j, 0, 144}]]; g[n_, m_] := f[n][[m]]; Select[ Range[141], # / g[ #, # + 3] == 2 &]
CROSSREFS
Sequence in context: A351661 A379166 A116001 * A315359 A361464 A344882
KEYWORD
nonn
AUTHOR
STATUS
approved