The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A263043 a(n)=n for n = 1..5; for n>=6, a(n) = a(n-5)*a(n-3)*a(n-1) - a(n-4)*a(n-2). 0
1, 2, 3, 4, 5, 7, 41, 587, 16231, 3323246, 13654552343, 9086706651503151, 17725851219520961162682469, 3928527920941441960398255684700870518131, 118631177920294161985904111240557003105520588984802122222460259 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
PROG
(PARI) a(n) = if(n<6, n, a(n-5)*a(n-3)*a(n-1)-a(n-4)*a(n-2));
vector(20, n, a(n)) \\ Altug Alkan, Oct 08 2015
(Magma) [n le 5 select n else Self(n-5)*Self(n-3)*Self(n-1)-Self(n-4)*Self(n-2): n in [1..20]]; // Vincenzo Librandi, Oct 09 2015
CROSSREFS
Sequence in context: A278342 A276522 A135709 * A028980 A183108 A096841
KEYWORD
nonn
AUTHOR
Gianmarco Giordano, Oct 08 2015
EXTENSIONS
More terms from Altug Alkan, Oct 08 2015
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 13 21:17 EDT 2024. Contains 372523 sequences. (Running on oeis4.)