A358599 Number of genetic relatives of a person M in a genealogical tree extending back n generations and where everyone has 5 children down to the generation of M.
1, 7, 59, 563, 5571, 55587, 555619, 5555683, 55555811, 555556067, 5555556579, 55555557603, 555555559651, 5555555563747, 55555555571939, 555555555588323, 5555555555621091, 55555555555686627, 555555555555817699, 5555555555556079843, 55555555555556604131
Offset: 0
Links
- Hans Braxmeier, Calculating the number of genetic relative people in a genealogical tree.
- Index entries for linear recurrences with constant coefficients, signature (13,-32,20).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{13, -32, 20}, {1, 7, 59}, 21] (* Hugo Pfoertner, Dec 05 2022 *)
-
Python
print([2**n+5*(10**n-1)//9 for n in range(10)])
Formula
a(n) = 2^n + 5*(10^n - 1)/9.
G.f.: (6*x-1)/((x-1)*(2*x-1)*(10*x-1)). - Alois P. Heinz, Dec 05 2022
a(n) = 13*a(n-1) - 32*a(n-2) + 20*a(n-3). - Wesley Ivan Hurt, Jun 19 2025
Comments