A246081 Paradigm shift sequence for (0,3) production scheme with replacement.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 21, 24, 27, 30, 33, 36, 42, 48, 54, 63, 72, 81, 90, 99, 108, 126, 144, 162, 189, 216, 243, 270, 297, 324, 378, 432, 486, 567, 648, 729, 810, 891, 972, 1134, 1296, 1458, 1701, 1944, 2187, 2430, 2673, 2916, 3402, 3888, 4374, 5103, 5832, 6561, 7290, 8019, 8748
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,0,3).
Crossrefs
Programs
-
PARI
Vec(x*(1+x+x^2)^2 * (1-x+x^3) * (1+x+x^2+2*x^3+x^4+x^6) / (1-3*x^9) + O(x^100)) \\ Colin Barker, Nov 19 2016
Formula
a(n) = (qd+r) * d^(C-R) * (d+1)^R, where r = (n-Cp) mod q, Q = floor( (R-Cp)/q ), R = Q mod (C+1), and d = floor (Q/(C+1) ).
a(n) = 3*a(n-9) for all n >= 15.
G.f.: x*(1+x+x^2)^2 * (1-x+x^3) * (1+x+x^2+2*x^3+x^4+x^6) / (1-3*x^9). - Colin Barker, Nov 19 2016
Comments