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!)
A350147 a(n) = Sum_{k=1..n} floor(n/(2*k-1))^k. 3
1, 2, 4, 5, 7, 11, 13, 14, 21, 29, 31, 39, 41, 57, 87, 88, 90, 133, 135, 173, 253, 317, 319, 335, 398, 526, 756, 932, 934, 1300, 1302, 1303, 1991, 2503, 3001, 3806, 3808, 4832, 6918, 7088, 7090, 9836, 9838, 13206, 21860, 25956, 25958, 25990, 27097, 35560, 54766 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: (1/(1 - x)) * Sum_{j>=1} Sum{k>=1} k^j * x^(k*(2*j-1)) * (1 - x^(2*j-1)).
Limit_{n->infinity} a(n)^(1/n) = exp(exp(-1)/2). - Vaclav Kotesovec, Dec 17 2021
MATHEMATICA
a[n_] := Sum[Floor[n/(2*k - 1)]^k, {k, 1, n}]; Array[a, 50] (* Amiram Eldar, Dec 17 2021 *)
PROG
(PARI) a(n) = sum(k=1, n, (n\(2*k-1))^k);
(PARI) my(N=66, x='x+O('x^N)); Vec(sum(j=1, N, (1-x^(2*j-1))*sum(k=1, N, k^j*x^(k*(2*j-1))))/(1-x))
CROSSREFS
Sequence in context: A056527 A147991 A033160 * A110924 A335402 A192590
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 16 2021
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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)