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!)
A344268 Dirichlet g.f.: Product_{k>=2} (1 + k^(-s))^(5^(k-1)). 7

%I #10 May 14 2021 12:37:31

%S 1,5,25,135,625,3250,15625,78760,390925,1956250,9765625,48847125,

%T 244140625,1220781250,6103531250,30517977755,152587890625,

%U 762941485875,3814697265625,19073496178125,95367432031250,476837207031250,2384185791015625,11920929201609625,59604644775585625,298023225097656250

%N Dirichlet g.f.: Product_{k>=2} (1 + k^(-s))^(5^(k-1)).

%t dircon[v_, w_] := Module[{lv = Length[v], lw = Length[w], fv, fw}, fv[n_] := If[n <= lv, v[[n]], 0]; fw[n_] := If[n <= lw, w[[n]], 0]; Table[ DirichletConvolve[fv[n], fw[n], n, m], {m, Min[lv, lw]}]];

%t a[n_] := Module[{A, v, w, m}, If[n<1, 0, v = Table[Boole[k == 1], {k, n}]; For[k = 2, k <= n, k++, m = Length[IntegerDigits[n, k]] - 1; A = (1 + x)^(5^(k - 1)) + x*O[x]^m // Normal; w = Table[0, {n}]; For[i = 0, i <= m, i++, w[[k^i]] = Coefficient[A, x, i]]; v = dircon[v, w]]; v[[n]]]];

%t Array[a, 26] (* after _Jean-François Alcover_ in A007896 *)

%Y Cf. A045778, A050368, A344249, A344265, A344266, A344267, A344269, A344270, A344271.

%K nonn

%O 1,2

%A _Ilya Gutkovskiy_, May 13 2021

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 August 7 03:07 EDT 2024. Contains 375003 sequences. (Running on oeis4.)