cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A364658 Numerators of coefficients in expansion of (1 + x)^(2/3).

Original entry on oeis.org

1, 2, -1, 4, -7, 14, -91, 208, -494, 10868, -27170, 69160, -535990, 1401820, -3704810, 29638480, -79653415, 215532770, -5280552865, 14452039420, -39743108405, 329300041070, -913059204785, 2540686482880, -21278249294120, 59579098023536, -167279775219928, 12713262916714528
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 01 2023

Keywords

Examples

			(1 + x)^(2/3) = 1 + 2*x/3 - x^2/9 + 4*x^3/81 - 7*x^4/243 + 14*x^5/729 - 91*x^6/6561 + ...
Coefficients are 1, 2/3, -1/9, 4/81, -7/243, 14/729, -91/6561, ...
		

Crossrefs

Denominators are A067623.

Programs

  • Mathematica
    nmax = 27; CoefficientList[Series[(1 + x)^(2/3), {x, 0, nmax}], x] // Numerator
    Table[Binomial[2/3, n], {n, 0, 27}] // Numerator
  • PARI
    my(x='x+O('x^30)); apply(numerator, Vec((1 + x)^(2/3))) \\ Michel Marcus, Aug 02 2023