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!)
A085507 Stirling transform of the prime characteristic function. 3

%I #18 Aug 06 2021 08:34:05

%S 0,0,1,4,13,41,136,505,2171,10693,58246,340242,2095435,13492077,

%T 90267633,623383765,4414350135,31899350954,235002008725,1773013299342,

%U 13855253098226,114135759054965,1010686200326760,9744658443894282,102153128291263124,1147158516520205256

%N Stirling transform of the prime characteristic function.

%H Alois P. Heinz, <a href="/A085507/b085507.txt">Table of n, a(n) for n = 0..576</a>

%H S. K. Ghosal, J. K. Mandal, <a href="https://doi.org/10.1016/j.protcy.2013.12.341">Stirling Transform Based Color Image Authentication</a>, Procedia Technology, 2013 Volume 10, 2013, Pages 95-104.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/StirlingTransform.html">Stirling Transform</a>

%F G.f.: Sum_{k>=1} x^prime(k)/Product_{j=1..prime(k)} (1 - j*x). - _Ilya Gutkovskiy_, Jun 19 2018

%p b:= proc(n, m) option remember;

%p `if`(n=0, `if`(isprime(m), 1, 0), m*b(n-1, m)+b(n-1, m+1))

%p end:

%p a:= n-> b(n, 0):

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Aug 06 2021

%t a[n_] := Sum[ StirlingS2[n, k]*Boole[PrimeQ[k]], {k, 0, n}]; Table[a[n], {n, 0, 23}] (* _Jean-François Alcover_, Oct 29 2012 *)

%K nonn

%O 0,4

%A _Eric W. Weisstein_, Jul 02 2003

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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)