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!)
A015508 a(1) = 1, a(n) = Sum_{k=1..n-1} ((7^k - 1)/6)*a(k). 10

%I #13 May 01 2023 18:33:15

%S 1,1,9,522,209322,586520244,11501075464596,1578614616119517768,

%T 1516734501782248791012168,10200952598655696033329019125136,

%U 480252779391204632593567857157274897424,158269444415262012661462389451687149577571916192

%N a(1) = 1, a(n) = Sum_{k=1..n-1} ((7^k - 1)/6)*a(k).

%H G. C. Greubel, <a href="/A015508/b015508.txt">Table of n, a(n) for n = 1..49</a>

%F a(n) = ((7^(n-1) + 5)/6) * a(n-1). - _Vincenzo Librandi_, Nov 12 2012

%t a[n_, m_]:= a[n, m]= If[n<3, 1, (m^(n-1) + m-2)*a[n-1,m]/(m-1)];

%t Table[a[n,7], {n,30}] (* _G. C. Greubel_, Apr 30 2023 *)

%o (Magma) [n le 2 select 1 else ((7^(n-1) + 5)/6)*Self(n-1): n in [1..15]]; // _Vincenzo Librandi_, Nov 12 2012

%o (SageMath)

%o @CachedFunction # a = A015508

%o def a(n,m): return 1 if (n<3) else (m^(n-1)+m-2)*a(n-1,m)/(m-1)

%o [a(n,7) for n in range(1,31)] # _G. C. Greubel_, Apr 30 2023

%Y Sequences with the recurrence a(n) = (m^(n-1) + m-2)*a(n-1)/(m-1): A036442 (m=2), A015502 (m=3), A015503 (m=4), A015506 (m=5), A015507 (m=6), this sequence (m=7), A015509 (m=8), A015511 (m=9), A015512 (m=10), A015513 (m=11), A015515 (m=12).

%K nonn,easy

%O 1,3

%A _Olivier GĂ©rard_

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)