A274167 Number of real integers in n-th generation of tree T(i-1) defined in Comments.
1, 1, 1, 1, 1, 4, 5, 8, 14, 24, 39, 67, 112, 191, 327, 560, 956, 1635, 2796
Offset: 0
Examples
If r = i-1, then g(3) = {3,2r,r+1, r^2}, in which the number of real integers is a(3) = 1.
Crossrefs
Cf. A274142.
Programs
-
Mathematica
z = 18; t = Join[{{0}}, Expand[NestList[DeleteDuplicates[Flatten[Map[{# + 1, x*#} &, #], 1]] &, {1}, z]]]; u = Table[t[[k]] /. x -> I - 1, {k, 1, z}]; Table[ Count[Map[IntegerQ, u[[k]]], True], {k, 1, z}]
Comments