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!)
A306185 a(n) = (2n+1)!! + (2n)!! where k!! = A006882(k). 1
5, 23, 153, 1329, 14235, 181215, 2672145, 44781345, 840523635, 17465201775, 397983749625, 9867844134225, 264469801070475, 7618612476650175, 234748657653134625, 7703855828862818625, 268263758052098683875, 9879138385352252391375, 383608053176023482431625, 15664153113813817068080625 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A006882(2*n+1) + A006882(2*n).
EXAMPLE
a(3) = A006882(7) + A006882(6) = (7*5*3) + (6*4*2) = 105 + 48 = 153.
PROG
(Python)
o=e=1
for n in range(2, 99, 2):
o*=n+1
e*=n
print str(o+e)+', ',
CROSSREFS
Sequence in context: A007836 A233568 A157306 * A336183 A342196 A228851
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Jan 27 2019
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)