The sequence (an)n≥1 is defined by a1=1,a2=2,a3=24, and, for n≥4,an=an−2an−36an−12an−3−8an−1an−22. Show that, for all n, an is an integer multiple of n.
This one wants a proof. Work it on paper, read the official solution, then mark
yourself honestly — the ladder only means something if the record is true.
Official solution
1. Define the sequence transformation: We start by defining bn=an−1an. This transformation helps us simplify the given recurrence relation.
2. Substitute and simplify the recurrence relation: Given the recurrence relation for an: an=an−2an−36an−12an−3−8an−1an−22 Substitute an=bnan−1, an−1=bn−1an−2, and an−2=bn−2an−3: bnan−1=(bn−2an−3)an−36(bn−1an−2)2an−3−8(bn−1an−2)(bn−2an−3)2 Simplify the expression: bnan−1=bn−2an−326bn−12an−22an−3−8bn−1bn−22an−2an−32 bnan−1=bn−2an−36bn−12an−22−8bn−1bn−22an−2 bnan−1=bn−26bn−12an−2−8bn−1bn−22 bnan−1=6bn−12−8bn−1bn−2 bn=6bn−1−8bn−2
3. **Solve the recurrence relation for bn:** The recurrence relation bn=6bn−1−8bn−2 is a linear homogeneous recurrence relation with constant coefficients. To solve it, we find the characteristic equation: x2−6x+8=0 Solving the characteristic equation: x=26±36−32=26±2=4 or 2 Thus, the general solution for bn is: bn=A⋅4n+B⋅2n
4. **Determine the constants A and B:** Using the initial conditions b2=a1a2=2 and b3=a2a3=12: b2=A⋅42+B⋅22=16A+4B=2 b3=A⋅43+B⋅23=64A+8B=12 Solving these equations: 16A+4B=2(1) 64A+8B=12(2) Divide equation (2) by 4: 16A+2B=3(3) Subtract equation (1) from equation (3): 16A+2B−(16A+4B)=3−2 −2B=1⟹B=−21 Substitute B back into equation (1): 16A+4(−21)=2 16A−2=2⟹16A=4⟹A=41 Thus, the solution for bn is: bn=41⋅4n−21⋅2n=4n−1−2n−1
5. **Express an in terms of bn:** Since bn=an−1an, we have: an=bnan−1=(4n−1−2n−1)an−1 By induction, we can show that: an=i=1∏n−1(4i−2i)
6. **Show that an is an integer multiple of n:** We need to show that n∣an. Note that: an=i=1∏n−1(4i−2i) Each term 4i−2i is divisible by 2i−1. The product of these terms includes all factors of n because n! divides the product of the first n−1 terms.
Therefore, an is an integer multiple of n.
■
Source: NuminaMath-1.5,
licensed Apache-2.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.