A274153 Number of integers in n-th generation of tree T(5/2) defined in Comments.
1, 1, 1, 2, 2, 4, 5, 8, 12, 19, 27, 41, 60, 90, 136, 204, 306, 461, 692, 1036, 1557, 2330, 3498, 5247, 7872, 11803, 17715, 26558, 39851, 59781, 89651, 134482, 201736, 302605, 453892, 680800, 1021307, 1531944, 2297678, 3446694, 5170101, 7754719, 11632249, 17448162, 26172247, 39258668, 58886868, 88331299, 132497660
Offset: 0
Examples
For r = 5/2, we have g(3) = {3,2r,r+1, r^2}, in which the number of integers is a(3) = 2.
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 -> 5/2, {k, 1, z}]; Table[Count[Map[IntegerQ, u[[k]]], True], {k, 1, z}]
Extensions
More terms from Kenny Lau, Jul 02 2016
Comments