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!)
A283719 Main diagonal of A283674. 2
1, 1, 17, 19748, 4295531890, 298024338096736401, 10314425731041362057808006400, 256923578002337121862310634348534055243302, 6277101735598269851830651637045695165917698976435202316054 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n^(n^2) * (1 + 1/(exp(n-1/2)*n^n)). - Vaclav Kotesovec, Mar 17 2017
MATHEMATICA
nmax = 20; Table[SeriesCoefficient[Product[1/(1 - x^k)^(k^(n*k)), {k, 1, nmax}], {x, 0, n}], {n, 0, nmax}] (* Vaclav Kotesovec, Mar 17 2017 *)
PROG
(Ruby)
def s(k, i)
s = 0
(1..i).each{|j| s += j ** (k * j + 1) if i % j == 0}
s
end
def A(k, n)
ary = [1]
s_ary = [0] + (1..n).map{|i| s(k, i)}
(1..n).each{|i| ary << (1..i).inject(0){|s, j| s + ary[-j] * s_ary[j]} / i}
ary
end
def A283719(n)
(0..n).map{|i| A(i, i)[-1]}
end
CROSSREFS
Cf. A283674.
Sequence in context: A308671 A308670 A308571 * A355465 A134360 A171687
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 15 2017
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)