login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A132114
Multiply previous term by 7 and reverse.
8
1, 7, 94, 856, 2995, 56902, 413893, 1527982, 47859601, 702710533, 1373798194, 8537856169, 38139946795, 565726979662, 4367588800693, 15840612137503, 125269482488011, 770614773688678, 6470285143034935, 54544210069919254
OFFSET
1,2
LINKS
FORMULA
a(n) = reverse(7 * a(n-1)) with a(1) = 1.
EXAMPLE
a(4) = reverse(7 * a(3)) = reverse(7 * reverse(7 * a(2))) = reverse(7 * reverse(7 * reverse(7 * a(1)))) = reverse(7 * reverse(7 * reverse(7))) = reverse(7*94) = 856.
PROG
(PARI) seq(n)={my(a=vector(n)); a[1]=1; for(n=2, #a, a[n]=fromdigits(Vecrev(digits(a[n-1]*7)))); a} \\ Andrew Howroyd, Jan 02 2020
(Magma) f:=func<n|Seqint(Reverse(Intseq(7*n)))>; a:=[1]; for n in [2..20] do Append(~a, f(a[n-1])); end for; a; // Marius A. Burtea, Jan 03 2020
CROSSREFS
Cf. A036447 (*2), A163632 (*3), A132064 (*4), A045539 (*5), A132078 (*6), A132113 (*8), A133361 (*9).
Sequence in context: A109304 A134113 A071584 * A221384 A243679 A367162
KEYWORD
base,nonn
AUTHOR
Rachit Agrawal (rachit_agrawal(AT)daiict.ac.in), Oct 31 2007
EXTENSIONS
Name edited by Andrew Howroyd, Jan 02 2020
STATUS
approved