A274150 Number of integers in n-th generation of tree T(-2/3) defined in Comments.
1, 1, 1, 1, 2, 2, 2, 4, 5, 7, 10, 14, 17, 23, 33, 43, 61, 82, 111, 150, 202, 278, 376, 516, 694, 941, 1281, 1731, 2369, 3208, 4364, 5915, 8015, 10911, 14792, 20139, 27314, 37082, 50358, 68309, 92891, 126054, 171277, 232504, 315584, 428704, 581880, 790589, 1073298, 1457466, 1979119, 2686767, 3649316
Offset: 0
Examples
For r = -2/3, we have g(3) = {3,2r,r+1, r^2}, in which the number of integers is a(3) = 1.
Links
- Kenny Lau, Table of n, a(n) for n = 0..7521
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 -> -2/3, {k, 1, z}]; Table[Count[Map[IntegerQ, u[[k]]], True], {k, 1, z}]
Extensions
More terms from Kenny Lau, Jul 01 2016
Comments