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!)
A299399 a(n) = a(n-1)*a(n-2)*a(n-3)*a(n-4); a(0..3) = (1, 1, 2, 3). 2
1, 1, 2, 3, 6, 36, 1296, 839808, 235092492288, 9211413321697223245824, 2356948205087252000835395074931259831484416, 4286423488783965214900384842824017360544199884413056912194095171350270745233063936 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A variant of A000336 which uses initial values (1,2,3,4).
A multiplicative variant of the tetranacci sequences A000078, A001631 and other variants.
LINKS
FORMULA
a(n) = a(n-1)^2 / a(n-5) for n > 4.
a(n) = 2^A001631(n)*3^A000078(n).
MATHEMATICA
nxt[{a_, b_, c_, d_}]:={b, c, d, a b c d}; NestList[nxt, {1, 1, 2, 3}, 13][[All, 1]] (* Harvey P. Dale, Jun 09 2022 *)
PROG
(PARI) A299399(n, a=[1, 1, 2, 3, 6])={for(n=5, n, a[n%#a+1]=a[(n-1)%#a+1]^2\a[n%#a+1]); a[n%#a+1]}
CROSSREFS
Cf. A000336 (variant starting 1,2,3,4).
Cf. A000301 (order 2 variant), A000308 (order 3 variant).
Subsequence of A003586 (3-smooth numbers).
Cf. A000078, A001631 (additive variants).
Sequence in context: A351883 A129379 A000308 * A173501 A018340 A299121
KEYWORD
nonn
AUTHOR
M. F. Hasler, Apr 22 2018
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 August 10 16:24 EDT 2024. Contains 375058 sequences. (Running on oeis4.)