A306349 Number of terms in the greedy Egyptian fraction representation of n.
1, 4, 13, 35, 99
Offset: 1
Examples
a(3)=13 is the number of terms of A140335; a(4)=35 is the number of terms of A281873.
Programs
-
Python
from sympy import egyptian_fraction def A306349(n): return len(egyptian_fraction((n,1)))
Comments