A274163 Number of real integers in n-th generation of tree T(4i) defined in Comments.
1, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6766, 10948, 17716, 28667, 46388, 75063
Offset: 0
Examples
If r = 4i, then g(3) = {3,2r,r+1, r^2}, in which the number of real integers is a(3) = 2.
Crossrefs
See A274142 for a guide to related sequences.
Programs
-
Mathematica
z = 18; t = Join[{{0}}, Expand[NestList[DeleteDuplicates[Flatten[Map[{# + 1, x*#} &, #], 1]] &, {1}, z]]]; u = Table[t[[k]] /. x -> 4 I, {k, 1, z}]; Table[Count[Map[IntegerQ, u[[k]]], True], {k, 1, z}]
Extensions
a(21)-a(25) from Robert G. Wilson v, Jul 23 2018
Comments