A274166 Number of real integers in n-th generation of tree T(i+1) defined in Comments.
1, 1, 1, 1, 1, 2, 3, 4, 8, 15, 24, 44, 84, 146, 254, 443, 761, 1317, 2262
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