login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A274156 Number of integers in n-th generation of tree T(2^(-1/2)) defined in Comments. 2
1, 1, 1, 1, 2, 2, 3, 4, 6, 7, 10, 14, 19, 25, 35, 47, 64, 87, 119, 161, 220, 300, 407, 554, 757, 1028, 1399, 1908, 2598, 3534, 4816, 6560, 8929, 12161, 16567, 22556, 30718, 41843, 56981, 77597, 105693, 143944, 196029, 266991, 363634, 495228, 674481, 918629, 1251106, 1703941, 2320726, 3160713, 4304733 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Let T* be the infinite tree with root 0 generated by these rules: if p is in T*, then p+1 is in T* and x*p is in T*. Let g(n) be the set of nodes in the n-th generation, so that g(0) = {0}, g(1) = {1}, g(2) = {2,x}, g(3) = {3,2x,x+1,x^2}, etc. Let T(r) be the tree obtained by substituting r for x.
See A274142 for a guide to related sequences.
LINKS
EXAMPLE
If r = 2^(-1/2), then g(3) = {3,2r,r+1, r^2}, in which the number of integers is a(3) = 1.
MATHEMATICA
z = 18; t = Join[{{0}}, Expand[NestList[DeleteDuplicates[Flatten[Map[{# + 1, x*#} &, #], 1]] &, {1}, z]]];
u = Table[t[[k]] /. x -> 2^(-1/2), {k, 1, z}];
Table[Count[Map[IntegerQ, u[[k]]], True], {k, 1, z}]
CROSSREFS
Cf. A274142.
Sequence in context: A238861 A309212 A320270 * A094860 A213816 A065417
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 12 2016
EXTENSIONS
More terms from Kenny Lau, Jul 01 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)