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.

Showing 1-2 of 2 results.

A000148 Number of partitions into non-integral powers.

Original entry on oeis.org

1, 2, 7, 15, 28, 45, 70, 100, 138, 183, 242, 310, 388, 481, 583, 701, 838, 984, 1152, 1337, 1535, 1757, 2001, 2262, 2545, 2855, 3183, 3540, 3926, 4335, 4770, 5233, 5728, 6248, 6801, 7388, 8005, 8658, 9345, 10064, 10824, 11620, 12452, 13324, 14236
Offset: 2

Views

Author

Keywords

Comments

a(n) is the number of solutions to the inequality x_1^(2/3) + x_2^(2/3) <= n where 1 <= x_1 <= x_2 are any two integers. If the number of terms in the sum is not restricted to 2, we get A000234. - R. J. Mathar, Jul 03 2009

References

  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    A000148[n_] := Sum[Min[xi, Floor[(n - xi^(2/3))^(3/2)]], {xi, 1, Floor[n^(3/2)]}];
    Table[A000148[n], {n, 2, 100}] (* Seth A. Troisi, May 25 2022 *)

Extensions

More terms from Sean A. Irvine, Oct 08 2009

A000158 Number of partitions into non-integral powers.

Original entry on oeis.org

1, 2, 8, 19, 41, 78, 134, 218, 339, 506, 730, 1023, 1397, 1884, 2477, 3218, 4118, 5192, 6486, 8010, 9795, 11888, 14302, 17066, 20256, 23889, 27999, 32637, 37863, 43695, 50218, 57495, 65545, 74431, 84257, 95030, 106840, 119799, 133941, 149311, 166071
Offset: 3

Views

Author

Keywords

Comments

a(n) counts the solutions to the inequality x_1^(2/3)+x_2^(2/3)+x_3^(2/3)<=n for any three integers 1<=x_1<=x_2<=x_3. - R. J. Mathar, Jul 03 2009

References

  • B. K. Agarwala and F. C. Auluck, Statistical mechanics and partitions into non-integral powers of integers, Proc. Camb. Phil. Soc., 47 (1951), 207-216.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A000148, A000160, A000234. - R. J. Mathar, Jul 03 2009

Extensions

More terms from Sean A. Irvine, Oct 11 2009
Showing 1-2 of 2 results.