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!)
A264201 Numerator of sum of numbers in set g(n) generated as in Comments 1

%I #8 Nov 24 2015 01:42:43

%S 0,1,7,46,265,1519,8560,47578,264076,1461439,8075011,44596708,

%T 246189961,1358762089,7498499272,41378660380,228330571360,

%U 1259923712821,6952163820391,38361311420962,211673092313329,1167984733037851,6444783128779528,35561432547881926

%N Numerator of sum of numbers in set g(n) generated as in Comments

%C Starting with g(0) = {0}, generate g(n) for n > 0 inductively using these rules:

%C (1) if x is in g(n-1), then x + 1 is in g(n); and

%C (2) if x is in g(n-1) and x < 3, then x/3 is in g(n).

%C The sum of numbers in g(n) is a(n)/3^(n-1).

%F Conjecture: a(n) = 4*a(n-1) + 9*a(n-2) + 18*a(n-3) - 81*a(n-4) - 162*a(n-5) - 243*a(n-6).

%e g(0) = {0}, sum = 0.

%e g(1) = {1}, sum = 1.

%e g(2) = {1/3,2/1}, sum = 7/3.

%e g(3) = {1/9,2/3,4/3,3/1}, sum = 46/9.

%t z = 5; x = 1/3; g[0] = {0}; g[1] = {1};

%t g[n_] := g[n] = Union[1 + g[n - 1], (1/3) Select[g[n - 1], # < 3 &]]

%t Table[g[n], {n, 0, z}]

%t Table[Total[g[n]], {n, 0, z}]

%t u = Numerator[Table[Total[g[n]], {n, 0, z}] ]

%Y Cf. A264200.

%K nonn,easy

%O 0,3

%A _Clark Kimberling_, Nov 09 2015

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)