The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A100413 Numbers k such that k is reversal(k)-th even composite number (k is A004086(k)-th even composite number). 4
52, 592, 5992, 59992, 599992, 5999992, 59999992, 599999992, 5999999992, 59999999992, 599999999992, 5999999999992, 59999999999992, 599999999999992, 5999999999999992, 59999999999999992, 599999999999999992 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 6*10^n - 8.
a(n) = 2*(A086943(n) + 3). - Martin Ettl, Nov 08 2012
From Colin Barker, Oct 14 2014: (Start)
a(n) = 10*a(n-1) + a(n-2) - 10*a(n-3).
G.f.: 4*x*(13+5*x)/((1-x)*(1-10*x)). (End)
E.g.f.: 2 (1 - 4*exp(x) + 3*exp(10*x)). - G. C. Greubel, Apr 13 2023
EXAMPLE
592 is in the sequence because 592 is the 295th even composite number.
MAPLE
A100413:=n->6*10^n-8; seq(A100413(n), n=1..20); # Wesley Ivan Hurt, Apr 06 2014
MATHEMATICA
Table[6*10^n-8, {n, 20}]
PROG
(Maxima) A100413(n):=6*10^n-8$
makelist(A100413(n), n, 1, 17); /* Martin Ettl, Nov 08 2012 */
(PARI) Vec(4*x*(5*x+13)/((x-1)*(10*x-1)) + O(x^100)) \\ Colin Barker, Oct 14 2014
(Magma) [6*10^n -8: n in [1..20]]; // G. C. Greubel, Apr 13 2023
(SageMath) [6*10^n -8 for n in range(1, 21)] # G. C. Greubel, Apr 13 2023
CROSSREFS
Sequence in context: A000527 A294055 A285753 * A221272 A254137 A249712
KEYWORD
base,easy,nonn
AUTHOR
Farideh Firoozbakht, Dec 08 2004
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 June 7 06:25 EDT 2024. Contains 373144 sequences. (Running on oeis4.)