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!)
A352683 a(n) = A352682(4, n). 1
1, 4, 5, 14, 42, 145, 566, 2446, 11547, 58980, 323458, 1892559, 11751904, 77101510, 532426225, 3857129474, 29229557534, 231113610537, 1902340920682, 16267763481746, 144260854186939, 1324431903156744, 12569419869410886, 123141802554934015, 1243798055506236156 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 3*Gould(n - 1) + Bell(n) for n >= 1.
a(n) = Sum_{k=1..n} binomial(n-1, k-1)*a(n-k) for n >= 2.
PROG
(Julia)
function A352683List(len)
a = 4; P = BigInt[1]; T = BigInt[1]
for n in 1:len-1
T = vcat(T, a)
P = cumsum(vcat(a, P))
a = P[end]
end
T end
A352683List(25) |> println
CROSSREFS
Cf. A352682, A000110 (Bell), A040027 (Gould).
Sequence in context: A093862 A041375 A042279 * A182252 A041857 A041034
KEYWORD
nonn
AUTHOR
Peter Luschny, Mar 30 2022
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 March 28 17:42 EDT 2024. Contains 371254 sequences. (Running on oeis4.)