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!)
A324222 a(n) is defined by the condition that the decimal expansion of Sum_{n>0} 1/a(n)^n = 1/a(1)^1 + 1/a(2)^2 + 1/a(3)^3 + ... begins with the concatenation of these numbers; also a(1) = 3 and a(n) > a(n-1). 9

%I #20 Jan 05 2020 07:19:28

%S 3,6,14,75,574,2029,4589,7927,78325,681667,720945

%N a(n) is defined by the condition that the decimal expansion of Sum_{n>0} 1/a(n)^n = 1/a(1)^1 + 1/a(2)^2 + 1/a(3)^3 + ... begins with the concatenation of these numbers; also a(1) = 3 and a(n) > a(n-1).

%C a(11) is the last term because the sequence cannot be extended. At any step a(n) is chosen as the least number greater than a(n-1) that meets the requirement. Up to 720945 the sum is 0.3 6 14 75 574 2029 4589 7927 78325 681667 720945 0664... and the zero after 720945 cannot be removed.

%C If the limitation a(n) > a(n-1) were removed then the sequence would be 3, 6, 14, 75, 57, 58, 91, 197, 53, 423, 613, 102, 956 and 956 would be the last term because after it the sum presents 0316... and the zero cannot be removed. - _Giovanni Resta_, Feb 20 2019

%e 1/3^1 = 0.3333...

%e 1/3^1 + 1/6^2 = 0.36111...

%e 1/3^1 + 1/6^2 + 1/14^3 = 0.3614755...

%e The sum is 0.3 6 14 75 574 ...

%p P:=proc(q, h) local a, b, d, n, t; a:=1/h; b:=ilog10(h)+1;

%p d:=h; print(d); t:=2; for n from 1 to q do

%p if trunc(evalf(a+1/n^t, 100)*10^(b+ilog10(n)+1))=d*10^(ilog10(n)+1)+n

%p then b:=b+ilog10(n)+1; d:=d*10^(ilog10(n)+1)+n; a:=a+1/n^t; t:=t+1;

%p print(n); fi; od; end: P(10^5,3);

%Y Cf. A304288, A304289, A305661, A305662, A305663, A305664, A305665, A305666, A305667, A305668, A320023, A320284, A320306, A320307, A320308, A320309, A320335, A320336, A324223.

%K nonn,base,fini,full

%O 1,1

%A _Paolo P. Lava_, Feb 18 2019

%E a(7)-a(11) added by _Giovanni Resta_, Feb 20 2019

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 July 8 22:54 EDT 2024. Contains 374171 sequences. (Running on oeis4.)