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”).

A074863
a(n) = a(n-1) + a(n-2) + a(n-3) + R(a(n-4)) where a(0)=a(1)=a(2)=a(3)=1 and R(n) (A004086) is the reverse of n.
1
1, 1, 1, 1, 4, 7, 13, 25, 49, 94, 199, 394, 781, 1423, 3589, 6286, 11485, 24601, 52225, 95137, 230374, 388378, 766114, 1458025, 3085549, 6183571, 11138812, 25616473, 52394659, 90903760, 190798003, 371558074, 748909162, 1317996148, 2739360475, 5277120958
OFFSET
0,5
LINKS
N. J. A. Sloane, Transforms
MAPLE
read transforms; A074863 := proc(n) option remember; local i, j, k, t1; if n <= 3 then 1 else A074863(n-1)+A074863(n-2)+A074863(n-3) +digrev(A074863(n-4)); fi; end;
CROSSREFS
Cf. A000288.
Sequence in context: A229439 A371916 A000288 * A118334 A205538 A181565
KEYWORD
easy,base,nonn
AUTHOR
Felice Russo, Sep 11 2002
EXTENSIONS
Corrected and extended by David Garber, Oct 23 2002
STATUS
approved