- 注册时间
- 2017-1-14
- 最后登录
- 1970-1-1
- 威望
- 星
- 金币
- 枚
- 贡献
- 分
- 经验
- 点
- 鲜花
- 朵
- 魅力
- 点
- 上传
- 次
- 下载
- 次
- 积分
- 9686
- 在线时间
- 小时
|
楼主 |
发表于 2023-5-26 16:06:27
|
显示全部楼层
周长为n, 有a(n)个3边为整数的3边形。Table[Length@Select[IntegerPartitions[n, {3}], Max[#]2<n &], {n, 3, 100}]
{1, 0, 1, 1, 2, 1, 3, 2, 4, 3, 5, 4, 7, 5, 8, 7, 10, 8, 12, 10, 14, 12, 16, 14, 19, 16, 21, 19, 24, 21, 27, 24, 30, 27, 33,30, 37, 33, 40, 37, 44, 40,
周长为n, 有a(n)个4边为整数的4边形。Table[Length@Select[IntegerPartitions[n, {4}], Max[#]2<n &], {n, 4, 100}]
{1, 1, 1, 2, 3, 4, 5, 7, 8, 11, 12, 16, 18, 23, 24, 31, 33, 41, 43, 53, 55, 67, 69, 83, 86, 102, 104, 123, 126, 147,150, 174, 177, 204, 207, 237,
周长为n, 有a(n)个5边为整数的5边形。Table[Length@Select[IntegerPartitions[n, {5}], Max[#]2<n &], {n, 5, 100}]
{1, 1, 2, 2, 4, 5, 8, 9, 14, 16, 23, 25, 35, 39, 52, 57, 74, 81, 103, 111, 139, 150, 184, 197, 239, 256, 306, 325, 385, 409, 480, 507, 590, 623,
周长为n, 有a(n)个6边为整数的6边形。Table[Length@Select[IntegerPartitions[n, {6}], Max[#]2<n &], {n, 6, 100}]
{1, 1, 2, 3, 4, 6, 9, 12, 16, 22, 28, 37, 46, 59, 71, 91, 107, 134, 157, 193, 222, 271, 308, 371, 419, 499, 559, 661, 734, 860, 952, 1106, 1216,
周长为n, 有a(n)个7边为整数的7边形。Table[Length@Select[IntegerPartitions[n, {7}], Max[#]2<n &], {n, 7, 100}]
{1, 1, 2, 3, 5, 6, 10, 13, 19, 24, 34, 42, 58, 70, 93, 112, 145, 171, 218, 256, 320, 372, 458, 528, 643, 735, 884, 1006, 1198, 1352, 1597, 1795,
周长为n, 有a(n)个8边为整数的8边形。Table[Length@Select[IntegerPartitions[n, {8}], Max[#]2<n &], {n, 8, 100}]
{1, 1, 2, 3, 5, 7, 10, 14, 20, 27, 36, 48, 63, 82, 104, 134, 167, 211, 258, 322, 389, 480, 572, 698, 825, 996, 1165, 1395, 1620, 1923, 2216, 2611,
周长为n, 有a(n)个9边为整数的9边形。Table[Length@Select[IntegerPartitions[n, {9}], Max[#]2<n &], {n, 9, 100}]
{1, 1, 2, 3, 5, 7, 11, 14, 21, 28, 39, 50, 69, 87, 116, 145, 189, 233, 299, 363, 458, 553, 687, 820, 1009, 1195, 1453, 1709, 2058, 2404, 2872, 3331,
(* Frank M Jackson, Nov 04 2022 *)
|
|