Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A248828 Number of 2n-length words, either empty or beginning with the first character of an n-ary alphabet, that can be built by repeatedly inserting doublets into the initially empty word. 3
1, 1, 3, 29, 523, 14289, 530526, 25066621, 1443039123, 98156060225, 7711583225338, 687676559089101, 68652814486950398, 7588068106131457489, 920064964125791788188, 121445943726500589053565, 17337678537189658091486851, 2661994674815094376005234945 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A183134(n,n).
a(n) ~ exp(-1) * 4^n * n^(n-5/2) / sqrt(Pi). - Vaclav Kotesovec, Oct 15 2014
a(n) = A294491(n) / n for n>0, a(0) = 1. - Alois P. Heinz, Oct 31 2017
EXAMPLE
a(2) = 3: aaaa, aabb, abba (with alphabet {a,b}).
MAPLE
a:= n->`if`(n=0, 1, add(binomial(2*n, j)*(n-j)*(n-1)^j, j=0..n-1)/n):
seq(a(n), n = 0..20);
MATHEMATICA
Flatten[{1, 1, Table[Sum[Binomial[2*n, j]*(n-j)*(n-1)^j, {j, 0, n-1}]/n, {n, 2, 20}]}] (* Vaclav Kotesovec, Oct 15 2014 *)
CROSSREFS
Main diagonal of A183134.
Cf. A294491.
Sequence in context: A326433 A113871 A186451 * A210827 A092251 A304553
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 15 2014
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 September 8 17:50 EDT 2024. Contains 375753 sequences. (Running on oeis4.)