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.

A378270 Number of partitions of 1 into {1/1^2, 1/2^2, 1/3^2, ..., 1/n^2}.

Original entry on oeis.org

1, 2, 3, 7, 8, 58, 59, 259, 664, 3427, 3428, 73351, 73352, 298785, 7060868, 43070304, 43070305, 901194373, 901194374, 32808600352, 1204438945226, 2459587779124, 2459587779125, 96010353352980
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 21 2024

Keywords

Comments

From David A. Corneth, Nov 24 2024: (Start)
Primes n/2 < p <= n occur in exactly one solution namely (p^2) * (1/p^2).
Proof: If the numerator k of k/p^2 is less than p^2 then p divides the denominator of the sum of the Egyptian fractions as p divides no other number <= n. But the goal is have sum 1 i.e. denominator 1 so p cannot be a divisor of the denominator. Consequently this can be reduced to "Number of partitions of 1 into {1/1^2, 1/2^2, ..., 1/(n/2)^2, ..., 1/n^2}" plus number of primes n/2 < p <= n. The denominators for the first part can be cleared turning this into a partitioning problem of positive integers. (End)

Examples

			a(4) = 7 because we have 16 * (1/16) = 12 * (1/16) + 1/4 = 8 * (1/16) + 2 * (1/4) = 4 * (1/16) + 3 * (1/4) = 9 * (1/9) = 4 * (1/4) = 1.
From _David A. Corneth_, Nov 24 2024: (Start)
To find a(12) we can rewrite the problem as "Number of partitions of 1 into {1/1^2, 1/2^2, 1/3^2, 1/4^2, 1/5^2, 1/6^2, 1/8^2, 1/9^2, 1/10^2, 1/12^2} + |{7, 11}|". The lcm of (1^2, 2^2, 3^2, 4^2, 5^2, 6^2, 8^2, 9^2, 10^2, 12^2) is 129600. So this comes a partition problem of (number of partitions of 129600 into parts 129600, 32400, 14400, 8100, 5184, 3600, 2025, 1600, 1296, 900) + |{7, 11}|. (End)
		

Crossrefs

Formula

a(p) = a(p-1) + 1 for prime p. - David A. Corneth, Nov 22 2024

Extensions

a(12)-a(21) from David A. Corneth, Nov 22 2024
a(22)-a(24) from Jinyuan Wang, Dec 11 2024