MatsGranvik

Partition numbers as the number of terms in a expansion

Jan 3rd, 2021 (edited)
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Clear[a, f, s, n, nn];
  2. nn = 20;
  3. a = CoefficientList[Series[1/f[x], {x, 0, nn}], x];
  4. Table[Length[Expand[a[[n]]]], {n, 1, Length[a]}]
  5.  
  6. {2, 3, 2, 3, 5, 7, 11, 15, 22, 30, 42, 56, 77, 101, 135, 176, 231, \
  7. 297, 385, 490, 627}
  8.  
  9. https://mathoverflow.net/questions/374643/is-there-a-connection-between-the-sequence-of-a-finite-number-of-stieltjes-const
Add Comment
Please, Sign In to add comment