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!)
A007753 a(n) = Sum_{k=0..n-1} binomial(a(k)^2, k). 1
1, 1, 2, 8, 41672, 378916495683075745757412513402693048 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MAPLE
a:= proc(n) option remember;
if n=0 then 1
else add(binomial(a(j)^2, j), j=0..n-1)
fi; end:
seq(a(n), n=0..6); # G. C. Greubel, Mar 04 2020
MATHEMATICA
a[n_]:= a[n]= If[n==0, 1, Sum[Binomial[a[j]^2, j], {j, 0, n-1}] ]; Table[a[n], {n, 0, 6}] (* G. C. Greubel, Mar 04 2020 *)
PROG
(Sage)
@CachedFunction
def a(n):
if (n==0): return 1
else: return sum(binomial(a(j)^2, j) for j in (0..n-1))
[a(n) for n in (0..6)] # G. C. Greubel, Mar 04 2020
CROSSREFS
Sequence in context: A058437 A185681 A046967 * A272331 A256065 A081979
KEYWORD
easy,nonn
AUTHOR
Barry Brunson (bbrunson(AT)wku.edu)
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 May 11 12:18 EDT 2024. Contains 372409 sequences. (Running on oeis4.)