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!)
A196197 Successive values of variable in iterative system. See formula. 1
1, 2, 46, 9524, 668167328, 2659622445121618432, 49010511918326168029213178565961711616, 16062797652514333892481251366398766288832009528055271611504951962161641422848 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Successive values of e in iterative system (LHS subscript for a-e is _n+1, RHS subscript for a-e is _n): a = 2ad + bd; b = 2ae + bd + be + 2cd + ce; c = be + ce; d = 2ad + 2ae + bd + be + ce; e = bd + be + 2cd + ce. The initial values for the system are a=b=d=e=1, c=0.
PROG
(PARI) v=[1, 1, 0, 1, 1]; for(n=1, 10, a=v[1]; b=v[2]; c=v[3]; d=v[4]; e=v[5]; print1(e", "); v=[2*a*d+b*d, 2*a*e+b*d+b*e+2*c*d+c*e, b*e+c*e, 2*a*d+2*a*e+b*d+b*e+c*e, b*d+b*e+2*c*d+c*e]) \\ Charles R Greathouse IV, Sep 29 2011
CROSSREFS
Sequence in context: A277554 A000191 A000192 * A273380 A124690 A195877
KEYWORD
nonn
AUTHOR
Daniel Tisdale, Sep 29 2011
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 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)